Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/asmjit/asmjit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxantares <xantares09@hotmail.com>2014-07-17 11:13:29 +0400
committerxantares <xantares09@hotmail.com>2014-07-17 11:13:29 +0400
commit2475e3f80ab9865d93be032dfd6ca5f648cc57a2 (patch)
treed626adcc1963d98f91120f1de82065ba046e1086 /CMakeLists.txt
parentf82fd80305ecff29c8a65cf5a5e1b12c588f1171 (diff)
Install dll in <prefix>/bin
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
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)