bin/CMakeLists.txt
author belphegorr <szabibibi@gmail.com>
Wed, 05 Sep 2012 16:54:13 +0300
changeset 7675 58620e9e5ed5
parent 4501 53ac7d07e673
child 7810 da60e6b6baa3
permissions -rw-r--r--
Fixed grammar/vocabulary and improved balance Mission 7: Added more pickhammers so that it's harder to run out of them, added more weapons to the AI Mission 6: Removed reset possibility, added sticky mines, more weapons for AI every six turns Enter commit message. Lines beginning with 'HG:' are removed.
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)