bin/CMakeLists.txt
author koda
Thu, 20 Dec 2012 23:12:18 +0100
changeset 8316 89232b2fa1d6
parent 7815 1a3a62b0ac11
child 8330 aaefa587e277
permissions -rw-r--r--
cmake rework, cleanup a lot of redundant sections, separate library and binary install location, unify osx and win handling of the data directory (tested on win, lin and mac)
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}
8316
89232b2fa1d6 cmake rework, cleanup a lot of redundant sections, separate library and binary install location, unify osx and win handling of the data directory (tested on win, lin and mac)
koda
parents: 7815
diff changeset
     8
		DESTINATION ${target_library_install_dir})
223
c41effdd461d Better build system scripts
unc0rr
parents:
diff changeset
     9
endif(WIN32 AND NOT UNIX)