bin/CMakeLists.txt
author Wuzzy <Wuzzy2@mail.ru>
Mon, 16 Sep 2019 17:33:49 +0200
changeset 15410 8504fee3b601
parent 13384 cf8abedaa878
permissions -rw-r--r--
Racer: Fix weird water splashes after waypoint placement Does not affect official racer, as only waypoint placement is touched. The reason was that the air attack gear sometimes was not deleted fast enough so it might occassionally drop some air bombs (these are deleted now). Also, the airplane position was set to water level, which caused another water splash.
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)
13384
cf8abedaa878 Fix win32 package creation
unC0Rr
parents: 13326
diff changeset
     2
    install(DIRECTORY .
cf8abedaa878 Fix win32 package creation
unC0Rr
parents: 13326
diff changeset
     3
        DESTINATION ${target_library_install_dir}
cf8abedaa878 Fix win32 package creation
unC0Rr
parents: 13326
diff changeset
     4
		FILES_MATCHING PATTERN "*.dll" PATTERN "*.ico" 
cf8abedaa878 Fix win32 package creation
unC0Rr
parents: 13326
diff changeset
     5
		)
223
c41effdd461d Better build system scripts
unc0rr
parents:
diff changeset
     6
endif(WIN32 AND NOT UNIX)