From 2475e3f80ab9865d93be032dfd6ca5f648cc57a2 Mon Sep 17 00:00:00 2001 From: xantares Date: Thu, 17 Jul 2014 07:13:29 +0000 Subject: [PATCH] Install dll in /bin --- CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3a51e44..438b207 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -205,7 +205,9 @@ Macro(AsmJit_AddLibrary in_name in_src in_deps in_cflags in_cflags_dbg in_cflags # Install Instructions. If(NOT ASMJIT_EMBED) - Install(TARGETS ${in_name} DESTINATION lib) + Install(TARGETS ${in_name} LIBRARY DESTINATION lib${LIB_SUFFIX} + ARCHIVE DESTINATION lib${LIB_SUFFIX} + RUNTIME DESTINATION bin) EndIf() Unset(__type)