Skip to content

Commit 14040db

Browse files
crazyhappygameminggo
authored andcommitted
MINSIZEREL_RELWITHDEBINFO_Support (#391)
1 parent d6dd182 commit 14040db

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

Box2D/CMakeLists.txt

+4
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ if(WINDOWS)
1919
IMPORTED_LOCATION_DEBUG "${platform_spec_path}/debug/lib${lib_name}.lib"
2020
IMPORTED_LOCATION_RELEASE "${platform_spec_path}/release/lib${lib_name}.lib"
2121
)
22+
set_target_properties(${target_name} PROPERTIES
23+
MAP_IMPORTED_CONFIG_MINSIZEREL Release
24+
MAP_IMPORTED_CONFIG_RELWITHDEBINFO Release
25+
)
2226
else()
2327
set_target_properties(${target_name} PROPERTIES
2428
IMPORTED_LOCATION "${platform_spec_path}/lib${lib_name}.a"

bullet/CMakeLists.txt

+4
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ if(WINDOWS)
2121
IMPORTED_LOCATION_DEBUG "${platform_spec_path}/debug/lib${lib_name}.lib"
2222
IMPORTED_LOCATION_RELEASE "${platform_spec_path}/release/lib${lib_name}.lib"
2323
)
24+
set_target_properties(${target_name} PROPERTIES
25+
MAP_IMPORTED_CONFIG_MINSIZEREL Release
26+
MAP_IMPORTED_CONFIG_RELWITHDEBINFO Release
27+
)
2428
else()
2529
set_target_properties(${target_name} PROPERTIES
2630
IMPORTED_LOCATION "${platform_spec_path}/libLinearMath.a"

chipmunk/CMakeLists.txt

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ if(WINDOWS)
1717
IMPORTED_LOCATION_DEBUG "${platform_spec_path}/debug-lib/lib${lib_name}.lib"
1818
IMPORTED_LOCATION_RELEASE "${platform_spec_path}/release-lib/lib${lib_name}.lib"
1919
)
20+
set_target_properties(${target_name} PROPERTIES
21+
MAP_IMPORTED_CONFIG_MINSIZEREL Release
22+
MAP_IMPORTED_CONFIG_RELWITHDEBINFO Release
23+
)
2024
else()
2125
set_target_properties(${target_name} PROPERTIES
2226
IMPORTED_LOCATION "${platform_spec_path}/lib${lib_name}.a"

0 commit comments

Comments
 (0)