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 d74a54e commit 632529aCopy full SHA for 632529a
CMakeLists.txt
@@ -210,10 +210,14 @@ if(BUILD_STATIC)
210
211
target_include_directories(dmdutil_static PUBLIC ${DMDUTIL_INCLUDE_DIRS})
212
213
- if(PLATFORM STREQUAL "win" AND ARCH STREQUAL "x64")
214
- set(DMDUTIL_OUTPUT_NAME "dmdutil64")
+ if(PLATFORM STREQUAL "win")
+ set_target_properties(dmdutil_static PROPERTIES
215
+ OUTPUT_NAME "dmdutil_static"
216
+ )
217
else()
- set(DMDUTIL_OUTPUT_NAME "dmdutil")
218
219
+ OUTPUT_NAME "dmdutil"
220
221
endif()
222
223
install(TARGETS dmdutil_static
0 commit comments