Skip to content
Snippets Groups Projects
Commit aecae73c authored by Albert Gräf's avatar Albert Gräf Committed by Albert Gräf
Browse files

Add win64_inno package.

parent d5bf614d
No related branches found
No related tags found
No related merge requests found
Showing
with 2390 additions and 0 deletions
#
# This is a grand unifying Makefile for compiling Pd-extended under MinGW
#
all: install
export CC = gcc
CWD := $(shell pwd)
DESTDIR = $(CWD)/build
cvs_root_dir := $(shell cd $(CWD)/../.. && pwd)
BUILDLAYOUT_DIR = $(cvs_root_dir)/packages
include $(BUILDLAYOUT_DIR)/Makefile.buildlayout
# Generic x86 (tune for Pentium III, since that's most common these days)
#OPT_CFLAGS += -mcpu=i586 -mtune=pentium3
# these are sent to all of the various Makefiles so that they all copy their
# output to the same directory tree
DEST_PATHS = BUILDLAYOUT_DIR=$(BUILDLAYOUT_DIR) \
cvs_root_dir=$(cvs_root_dir) \
DESTDIR=$(DESTDIR) \
prefix=$(prefix) \
OPT_CFLAGS="$(OPT_CFLAGS)" \
UNAME=$(UNAME)
ifeq ($(LIGHT),yes)
PD_INNO_SETUP = pd-inno-light.iss
else
PD_INNO_SETUP = pd-inno.iss
endif
package: $(PD_INNO_SETUP)
## this pops up the GUI app
# start $(PD_INNO_SETUP)
## this compiles the package on the command line. On 64-bit Windows
# we have to look in a different path, hence the ugly ifeq below...
ifeq (,$(wildcard /c/Program\ Files/Inno\ Setup\ 6/ISCC.exe))
/c/Program\ Files\ \(x86\)/Inno\ Setup\ 6/ISCC.exe $(PD_INNO_SETUP)
else
/c/Program\ Files/Inno\ Setup\ 6/ISCC.exe $(PD_INNO_SETUP)
endif
@echo " "
@echo "win64_inno install succeeded!"
git_version: $(pd_src)/src/s_version.h.in
@cd $(pd_src)/src/ && \
sed 's|^\(#define PD_BUILD_VERSION "\).*"|\1$(PD_BUILD_VERSION)"|' s_version.h.in > s_version.h.new && \
(test -f s_version.h && diff -q s_version.h s_version.h.new > /dev/null && rm -f s_version.h.new && echo s_version.h unchanged || (rm -f s_version.h && mv s_version.h.new s_version.h))
build_pd: git_version
cd $(pd_src)/src && $(MAKE) -f makefile.mingw
pd_install: build_pd
# the autoconf/MinGW setup doesn't compile the extras yet
# $(MAKE) -C $(pd_src)/src $(DEST_PATHS) bin
# -$(MAKE) -C $(pd_src)/src $(DEST_PATHS) install
$(MAKE) -C $(pd_src)/src -f makefile.mingw $(DEST_PATHS) install
install: pd_install prebuilt_install lib_install exe_install
@echo " "
@echo "win64_inno install succeeded!"
prebuilt_install:
$(MAKE) -C $(packages_src) $(DEST_PATHS) extended_install INCREMENTAL=$(INCREMENTAL) LIGHT=$(LIGHT)
$(MAKE) -C $(packages_src) $(DEST_PATHS) doc_format
ifeq ($(LIGHT),yes)
install -p pd-settings-light.reg $(DESTDIR)$(prefix)/pd-settings.reg
else
install -p pd-settings.reg $(DESTDIR)$(prefix)
endif
#==============================================================================#
#
## setup Pd binaries
#
#==============================================================================#
#bin_src = /usr/local/bin
bin_src = /mingw64/bin
system32 = /c/WINDOWS/system32
lib_install:
# ultimately, the DLLs should be installed in %SystemRoot%\system32 by
# InnoSetup since they are 'officially' named and versioned DLLs, and can be
# shared between apps
# GUI port note: Pd doesn't seem to be able to find the following libs
# unless they are in $(DESTDIR)$(bindir) instead of $(DESTDIR)$(prefix).
# I figured that out by trial and error. If a Windows expert wants to figure
# out a better way to do it, that's fine-- I'm just trying to get it to build
# at all at this point...
install -d $(DESTDIR)$(prefix)/
install -d $(DESTDIR)$(bindir)
install -p $(bin_src)/libfftw3-3.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libfftw3f-3.dll $(DESTDIR)$(bindir)/
#install -p $(bin_src)/libgnurx-0.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libogg-0.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libsndfile-1.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libvorbis-0.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libvorbisenc-2.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libvorbisfile-3.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libmp3lame-0.dll $(DESTDIR)$(bindir)/
ifneq ($(LIGHT),yes)
# I think these two are needed for zexy/matchbox and zexy/regex
install -p $(bin_src)/libsystre-0.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libtre-5.dll $(DESTDIR)$(bindir)/
# For fluid~
install -p $(bin_src)/libfluidsynth-2.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libgmodule-2.0-0.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libreadline8.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libtermcap-0.dll $(DESTDIR)$(bindir)/
# For other external libs
install -p $(bin_src)/lua53.dll $(DESTDIR)$(bindir)/
#install -p $(bin_src)/pthreadGC2.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libdl.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libportaudio-2.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libFLAC-8.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libspeex-1.dll $(DESTDIR)$(bindir)/
# These are for Gem
install -p $(bin_src)/libftgl-2.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libfreetype-6.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libbz2-1.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libharfbuzz-0.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libglib-2.0-0.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libintl-8.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libiconv-2.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libpng16-16.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/zlib1.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libpcre-1.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libgraphite2.dll $(DESTDIR)$(bindir)/
install -p $(bin_src)/libjpeg-8.dll $(DESTDIR)$(bindir)/
# New: lossless compression algorithm. Gem.dll won't load without it.
# Cf.: https://github.com/bagder/libbrotli. Looks like this recently
# got added to MSYS2. Apparently Gem needs only the decoder , but we
# include the entire shebang just in case.
install -p $(bin_src)/libbrotli*.dll $(DESTDIR)$(bindir)/
# Apparently these Gem dependencies must be in the bindir
# to be found on Windows
-install -p $(DESTDIR)/extra/Gem/gem_film*.dll $(DESTDIR)$(bindir)/
-install -p $(DESTDIR)/extra/Gem/gem_image*.dll $(DESTDIR)$(bindir)/
-install -p $(DESTDIR)/extra/Gem/gem_model*.dll $(DESTDIR)$(bindir)/
-install -p $(DESTDIR)/extra/Gem/gem_record*.dll $(DESTDIR)$(bindir)/
-install -p $(DESTDIR)/extra/Gem/gem_video*.dll $(DESTDIR)$(bindir)/
endif
# these stay with pd.exe
# if these are installed, include them in the build root
#-install -p $(system32)/msvcp71.dll $(DESTDIR)$(bindir)
#-install -p $(system32)/msvcr71.dll $(DESTDIR)$(bindir)
#-install -p $(system32)/pthreadVC.dll $(DESTDIR)$(bindir)
install -p $(bin_src)/libwinpthread-1.dll $(DESTDIR)$(bindir)
install -p $(bin_src)/libgcc_s_seh-1.dll $(DESTDIR)$(bindir)
install -p $(bin_src)/libstdc++-6.dll $(DESTDIR)$(bindir)
ifneq ($(LIGHT),yes)
# lyonpotpourri compiles its own shared lib. On Windows it needs to be
# in the path of the pd executable in order to get loaded. (There's probably
# also a way to add the external lib's path but I don't know how to do that.)
install -p $(DESTDIR)/extra/lyonpotpourri/liblyonpotpourri.dll $(DESTDIR)$(bindir)
# fftease also uses a shared lib...
install -p $(DESTDIR)/extra/fftease/libfftease.dll $(DESTDIR)$(bindir)
endif
exe_install:
install -d $(DESTDIR)$(bindir)
$(PD_INNO_SETUP): $(PD_INNO_SETUP).in
@echo "Making Inno Setup file: $(PD_INNO_SETUP)"
cat "$(PD_INNO_SETUP).in" | \
sed 's/PACKAGE_NAME/$(PACKAGE_NAME)/g' | \
sed 's/PD_VERSION/$(PD_VERSION)/g' | \
sed 's/PD_BUILD_VERSION/$(PD_BUILD_VERSION)/g' > \
$(PD_INNO_SETUP)
# in incremental builds the lib directory may not exist, in that case we need
# to edit the setup file to prevent an inno-setup error
test -d $(DESTDIR)$(libdir) || sed -i -e 's/^Source: build\\lib/;Source: build\\lib/' $(PD_INNO_SETUP)
# start $(PD_INNO_SETUP)
#==============================================================================#
#
## CLEAN TARGETS
#
#==============================================================================#
distclean: package_clean
$(MAKE) -C $(packages_src) $(DEST_PATHS) distclean
package_clean:
-rm $(PD_INNO_SETUP)
-rm -rf $(DESTDIR)
-rm -rf Output
clean: package_clean
$(MAKE) -C $(packages_src) $(DEST_PATHS) clean
#==============================================================================#
#
## TEST TARGETS
#
#==============================================================================#
test_package:
echo "No tests here yet"
test_locations:
@echo --------------------------------------------------
@echo "PD_VERSION: $(PD_VERSION)"
@echo "PD_BUILD_VERSION: $(PD_BUILD_VERSION)"
@echo "CWD $(CWD)"
@echo "DESTDIR $(DESTDIR)"
@echo "PREFIX $(prefix)"
@echo "BINDIR $(bindir)"
@echo "LIBDIR $(libdir)"
@echo "OBJECTSDIR $(objectsdir)"
@echo "PDDOCDIR $(pddocdir)"
@echo "LIBPDDIR $(libpddir)"
@echo "LIBPDBINDIR $(libpdbindir)"
@echo "HELPDIR $(helpdir)"
@echo "MANUALSDIR $(manualsdir)"
@echo "EXAMPLESDIR $(examplesdir)"
@echo --------------------------------------------------
autoconf --version
@echo --------------------------------------------------
make --version
@echo --------------------------------------------------
gcc --version
.PHONY: all install package clean distclean test_locations test_package exe_install
# ----------------------- NT -----------------------
.SUFFIXES: .dll
VC="C:\Program Files\Microsoft Visual Studio\Vc98"
PDNTINCLUDE = /I. /I /I..\..\pd\src /I$(VC)\include
PDNTLDIR = $(VC)\lib
all:
# externals
cd ..\..\externals\build\win && nmake
# flext
# non-standard paths in T. Grill's config-pd-*.txt files
# use need to edit config-pd-msvc.txt to get this to work
# cd ..\..\externals\grill\flext && nmake /f makefile.pd-msvc
clean:
# externals
cd ..\..\externals\build\win && nmake clean
# flext
cd ..\..\externals\grill\flext && nmake /f makefile.pd-msvc clean
Check this webpage for full build instructions:
http://puredata.org/docs/developer/mingw
------------------------------------------------------------------------------
Software Requirements
------------------------------------------------------------------------------
MinGW
MinGW provides a free, complete build environment for Pd.
Inno Setup - http://www.jrsoftware.org/isinfo.php
This package is assembled using Inno Setup, check pd.iss for details.
ogg vorbis win32k SDK -
Install into C:\ to make it work with the current Makefile
Tcl/Tk
Compile for MinGW.
pthreads - ftp://sources.redhat.com/pub/pthreads-win32/
pthreads is a standard, cross-platform threading library used in the pd
core and externals. You can use the version included with Pd.
MinGW/gcc
Pd is free software, and can be compiled using free tools. MinGW is the
preferred way of compiling Pd on Windows.
Microsoft Visual Studio -
You can use MS Visual Studio 6.0 or better to compile Pd and some
------------------------------------------------------------------------------
MinGW Makefile
------------------------------------------------------------------------------
See: http://puredata.org/docs/developer/windows
------------------------------------------------------------------------------
Microsoft Visual Studio Makefile
------------------------------------------------------------------------------
You will need to do this to compile:
nmake /f Makefile.nmake
Currently, the Makefile.nmake only compiles the 'externals' collection. It
can also compile flext if you manually check the flext config and uncomment
things from the Makefile.nmake.
------------------------------------------------------------------------------
Directory Layout
------------------------------------------------------------------------------
This directory is for files that are used in the creation of the Windows
installer. In order to use this to compile/assemble Pd and externals.
+-|
+-abstractions
|
+-packages-|
| +-win32_inno-|
| +-noncvs-|
| +-extra
| +-doc-|
| +-5.reference
|
+-doc-|
| +-additional
| +-pddp
| +-tutorials
|
+-externals-|
| +-...
| +-ext13
| +-ggee
| +-maxlib
| +-unauthorized
| +-zexy
| +-...
|
+-pd-|
+-src
+-doc
+-etc...
The recommended way to do this is (these are probably somewhat wrong):
mkdir pure-data && cd pure-data
setenv CVSROOT :pserver:anonymous@cvs.sourceforge.net:/cvsroot/pure-data
unzip pd source
cvs checkout packages
cvs checkout doc
cvs checkout externals
cd packages/win32_inno
make clean && make
------------------------------------------------------------------------------
non-CVS binaries
------------------------------------------------------------------------------
Binary Sources I Used (I haven't tested them all, I just downloaded them):
cyclone: http://suita.chopin.edu.pl/~czaja/miXed/externs/cyclone.html
freeverb~: http://www.akustische-kunst.org/puredata/freeverb/index.html
iemlibs: http://iem.kug.ac.at/~musil/iemlib/
maxlib: http://www.akustische-kunst.org/puredata/maxlib/index.html
OSC: http://barely.a.live.fm/pd/OSC/
percolate: http://www.akustische-kunst.org/puredata/percolate/index.html
toxy: http://suita.chopin.edu.pl/~czaja/miXed/externs/toxy.html
xeq: http://suita.chopin.edu.pl/~czaja/miXed/externs/xeq.html
zexy: ftp://iem.kug.ac.at/pd/Externals/ZEXY
all of T.Grill's code: http://www.parasitaere-kapazitaeten.net/ext/
-Hans-Christoph Steiner <hans@at.or.at>
packages/win64_inno/big_cat.bmp

128 KiB

This diff is collapsed.
This diff is collapsed.
"bin\pd.exe" -font 10 -listdev %1 %2 %3 %4 %5 %6 %7 %8 %9
"bin\pd.exe" -font 10 -lib cyclone -lib OSC -lib xeq -lib xsample -listdev %1 %2 %3 %4 %5 %6 %7 %8 %9
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Pd-extended]
"flags"="-font-size 12"
"loadlib1"="libdir"
"loadlib2"="pddp"
"nloadlib"=2
; delete any previous loadlib flags
"loadlib3"=-
"loadlib4"=-
"loadlib5"=-
"loadlib6"=-
"loadlib7"=-
"loadlib8"=-
"loadlib9"=-
"loadlib10"=-
"loadlib11"=-
"loadlib12"=-
"loadlib13"=-
"loadlib14"=-
"loadlib15"=-
"loadlib16"=-
"loadlib17"=-
"loadlib18"=-
"loadlib19"=-
"loadlib20"=-
"loadlib21"=-
"loadlib22"=-
"loadlib23"=-
"loadlib24"=-
"loadlib25"=-
"loadlib26"=-
"loadlib27"=-
"loadlib28"=-
"loadlib29"=-
"loadlib30"=-
"loadlib31"=-
"loadlib32"=-
"loadlib33"=-
"loadlib34"=-
"loadlib35"=-
"loadlib36"=-
"loadlib37"=-
"loadlib38"=-
"loadlib39"=-
"loadlib40"=-
"loadlib41"=-
"loadlib42"=-
"loadlib43"=-
"loadlib44"=-
"loadlib45"=-
"loadlib46"=-
"loadlib47"=-
"loadlib48"=-
"loadlib49"=-
"loadlib50"=-
"loadlib51"=-
"loadlib52"=-
"loadlib53"=-
"loadlib54"=-
"loadlib55"=-
"loadlib56"=-
"loadlib57"=-
"loadlib58"=-
"loadlib59"=-
"loadlib60"=-
"loadlib61"=-
"loadlib62"=-
"loadlib63"=-
"loadlib64"=-
"loadlib65"=-
"loadlib66"=-
"loadlib67"=-
"loadlib68"=-
"loadlib69"=-
"loadlib70"=-
"loadlib71"=-
"loadlib72"=-
"loadlib73"=-
"loadlib74"=-
"loadlib75"=-
"loadlib76"=-
"loadlib77"=-
"loadlib78"=-
"loadlib79"=-
"loadlib80"=-
"loadlib81"=-
"loadlib82"=-
"loadlib83"=-
"loadlib84"=-
"loadlib85"=-
"loadlib86"=-
"loadlib87"=-
"loadlib88"=-
"loadlib89"=-
"loadlib90"=-
"loadlib91"=-
"loadlib92"=-
"loadlib93"=-
"loadlib94"=-
"loadlib95"=-
"loadlib96"=-
"loadlib97"=-
"loadlib98"=-
"loadlib99"=-
"loadlib100"=-
"path1"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,00,2f,00,46,00,6f,00,6e,00,74,00,73,00,00,00
"npath"=1
; delete all existing path flags
"path2"=-
"path3"=-
"path4"=-
"path5"=-
"path6"=-
"path7"=-
"path8"=-
"path9"=-
"path10"=-
"path11"=-
"path12"=-
"path13"=-
"path14"=-
"path15"=-
"path16"=-
"path17"=-
"path18"=-
"path19"=-
"path20"=-
"path21"=-
"path22"=-
"path23"=-
"path24"=-
"path25"=-
"path26"=-
"path27"=-
"path28"=-
"path29"=-
"path30"=-
"path31"=-
"path32"=-
"path33"=-
"path34"=-
"path35"=-
"path36"=-
"path37"=-
"path38"=-
"path39"=-
"path40"=-
"path41"=-
"path42"=-
"path43"=-
"path44"=-
"path45"=-
"path46"=-
"path47"=-
"path48"=-
"path49"=-
"path50"=-
"path51"=-
"path52"=-
"path53"=-
"path54"=-
"path55"=-
"path56"=-
"path57"=-
"path58"=-
"path59"=-
"path60"=-
"path61"=-
"path62"=-
"path63"=-
"path64"=-
"path65"=-
"path66"=-
"path67"=-
"path68"=-
"path69"=-
"path70"=-
"path71"=-
"path72"=-
"path73"=-
"path74"=-
"path75"=-
"path76"=-
"path77"=-
"path78"=-
"path79"=-
"path80"=-
"path81"=-
"path82"=-
"path83"=-
"path84"=-
"path85"=-
"path86"=-
"path87"=-
"path88"=-
"path89"=-
"path90"=-
"path91"=-
"path92"=-
"path93"=-
"path94"=-
"path95"=-
"path96"=-
"path97"=-
"path98"=-
"path99"=-
"path100"=-
; delete all existing path flags
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Pd-extended]
"flags"="-font-size 12"
"loadlib1"="libdir"
"loadlib2"="Gem"
"loadlib3"="cyclone"
"loadlib4"="zexy"
"loadlib5"="creb"
"loadlib6"="cxc"
"loadlib7"="iemlib"
"loadlib8"="list-abs"
"loadlib9"="mapping"
"loadlib10"="markex"
"loadlib11"="maxlib"
"loadlib12"="memento"
"loadlib13"="mjlib"
"loadlib14"="motex"
"loadlib15"="oscx"
"loadlib16"="pddp"
"loadlib17"="pdogg"
"loadlib18"="pixeltango"
"loadlib19"="pmpd"
"loadlib20"="rradical"
"loadlib21"="sigpack"
"loadlib22"="smlib"
"loadlib23"="unauthorized"
"loadlib24"="vbap"
"loadlib25"="pan"
"loadlib26"="freeverb~"
"loadlib27"="hcs"
"loadlib28"="jmmmp"
"loadlib29"="ext13"
"loadlib30"="ggee"
"loadlib31"="iem_anything"
"loadlib32"="ekext"
"loadlib33"="hexloader"
"loadlib34"="disis"
"loadlib35"="lyonpotpourri"
"nloadlib"=35
; delete any previous loadlib flags
"loadlib35"=-
"loadlib36"=-
"loadlib37"=-
"loadlib38"=-
"loadlib39"=-
"loadlib40"=-
"loadlib41"=-
"loadlib42"=-
"loadlib43"=-
"loadlib44"=-
"loadlib45"=-
"loadlib46"=-
"loadlib47"=-
"loadlib48"=-
"loadlib49"=-
"loadlib50"=-
"loadlib51"=-
"loadlib52"=-
"loadlib53"=-
"loadlib54"=-
"loadlib55"=-
"loadlib56"=-
"loadlib57"=-
"loadlib58"=-
"loadlib59"=-
"loadlib60"=-
"loadlib61"=-
"loadlib62"=-
"loadlib63"=-
"loadlib64"=-
"loadlib65"=-
"loadlib66"=-
"loadlib67"=-
"loadlib68"=-
"loadlib69"=-
"loadlib70"=-
"loadlib71"=-
"loadlib72"=-
"loadlib73"=-
"loadlib74"=-
"loadlib75"=-
"loadlib76"=-
"loadlib77"=-
"loadlib78"=-
"loadlib79"=-
"loadlib80"=-
"loadlib81"=-
"loadlib82"=-
"loadlib83"=-
"loadlib84"=-
"loadlib85"=-
"loadlib86"=-
"loadlib87"=-
"loadlib88"=-
"loadlib89"=-
"loadlib90"=-
"loadlib91"=-
"loadlib92"=-
"loadlib93"=-
"loadlib94"=-
"loadlib95"=-
"loadlib96"=-
"loadlib97"=-
"loadlib98"=-
"loadlib99"=-
"loadlib100"=-
"path1"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,00,2f,00,46,00,6f,00,6e,00,74,00,73,00,00,00
"npath"=1
; delete all existing path flags
"path2"=-
"path3"=-
"path4"=-
"path5"=-
"path6"=-
"path7"=-
"path8"=-
"path9"=-
"path10"=-
"path11"=-
"path12"=-
"path13"=-
"path14"=-
"path15"=-
"path16"=-
"path17"=-
"path18"=-
"path19"=-
"path20"=-
"path21"=-
"path22"=-
"path23"=-
"path24"=-
"path25"=-
"path26"=-
"path27"=-
"path28"=-
"path29"=-
"path30"=-
"path31"=-
"path32"=-
"path33"=-
"path34"=-
"path35"=-
"path36"=-
"path37"=-
"path38"=-
"path39"=-
"path40"=-
"path41"=-
"path42"=-
"path43"=-
"path44"=-
"path45"=-
"path46"=-
"path47"=-
"path48"=-
"path49"=-
"path50"=-
"path51"=-
"path52"=-
"path53"=-
"path54"=-
"path55"=-
"path56"=-
"path57"=-
"path58"=-
"path59"=-
"path60"=-
"path61"=-
"path62"=-
"path63"=-
"path64"=-
"path65"=-
"path66"=-
"path67"=-
"path68"=-
"path69"=-
"path70"=-
"path71"=-
"path72"=-
"path73"=-
"path74"=-
"path75"=-
"path76"=-
"path77"=-
"path78"=-
"path79"=-
"path80"=-
"path81"=-
"path82"=-
"path83"=-
"path84"=-
"path85"=-
"path86"=-
"path87"=-
"path88"=-
"path89"=-
"path90"=-
"path91"=-
"path92"=-
"path93"=-
"path94"=-
"path95"=-
"path96"=-
"path97"=-
"path98"=-
"path99"=-
"path100"=-
; delete all existing path flags
"bin\pd.exe" -font 10 -path "doc\vasp" -lib cyclone -lib Gem -lib OSC -lib vasp -lib xeq -lib xsample -listdev %1 %2 %3 %4 %5 %6 %7 %8 %9
packages/win64_inno/pd.ico

24.6 KiB

packages/win64_inno/pdPatch_catGraphics.ico

13 KiB

packages/win64_inno/pdpatch.ico

1.95 KiB

packages/win64_inno/small_cat.bmp

9.57 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment