bin/CMakeLists.txt
author unc0rr
Fri, 25 Nov 2011 18:36:12 +0300
changeset 6425 1ef4192aa80d
parent 4501 53ac7d07e673
child 7810 da60e6b6baa3
permissions -rw-r--r--
- Parse unions, sets, function type, packed arrays and some more imporvements to the parser. Now it parses uVariable, uConsts and even SDLh.pas - Improve rendering of C code - Fix preprocessor issues, define "FPC" - Make pas2c convert unit along with its dependencies into corresponding .c files, so you just call it for hwengine.pas to convert the whole engine
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
223
c41effdd461d Better build system scripts
unc0rr
parents:
diff changeset
     1
if(WIN32 AND NOT UNIX)
1044
f759aae1062f Install all dlls from bin folder
unc0rr
parents: 223
diff changeset
     2
	file(GLOB DLLs *.dll)
4501
53ac7d07e673 Frontend:
smaxx
parents: 1044
diff changeset
     3
	file(GLOB ICOs *.ico)
1044
f759aae1062f Install all dlls from bin folder
unc0rr
parents: 223
diff changeset
     4
	
223
c41effdd461d Better build system scripts
unc0rr
parents:
diff changeset
     5
	install(FILES
1044
f759aae1062f Install all dlls from bin folder
unc0rr
parents: 223
diff changeset
     6
		${DLLs}
4501
53ac7d07e673 Frontend:
smaxx
parents: 1044
diff changeset
     7
		${ICOs}
223
c41effdd461d Better build system scripts
unc0rr
parents:
diff changeset
     8
		DESTINATION bin)
c41effdd461d Better build system scripts
unc0rr
parents:
diff changeset
     9
endif(WIN32 AND NOT UNIX)