We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b54bd68 commit d74a54eCopy full SHA for d74a54e
CMakeLists.txt
@@ -210,14 +210,10 @@ if(BUILD_STATIC)
210
211
target_include_directories(dmdutil_static PUBLIC ${DMDUTIL_INCLUDE_DIRS})
212
213
- if(PLATFORM STREQUAL "win")
214
- set_target_properties(dmdutil_static PROPERTIES
215
- OUTPUT_NAME "dmdutil_static"
216
- )
+ if(PLATFORM STREQUAL "win" AND ARCH STREQUAL "x64")
+ set(DMDUTIL_OUTPUT_NAME "dmdutil64")
217
else()
218
219
- OUTPUT_NAME "dmdutil"
220
+ set(DMDUTIL_OUTPUT_NAME "dmdutil")
221
endif()
222
223
install(TARGETS dmdutil_static
0 commit comments