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:11:51 +0400
committerxantares <xantares09@hotmail.com>2014-07-17 11:11:51 +0400
commitf82fd80305ecff29c8a65cf5a5e1b12c588f1171 (patch)
treeae91be829bcfbf0d3b0fea248cfd18759fe0dffe /CMakeLists.txt
parent104e857b6ccdec4f4bdda1d0b10741c687080d53 (diff)
Install if not ASMJIT_EMBED
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 971f060..3a51e44 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -204,7 +204,7 @@ Macro(AsmJit_AddLibrary in_name in_src in_deps in_cflags in_cflags_dbg in_cflags
Set_Target_Properties(${in_name} PROPERTIES LINK_FLAGS "${ASMJIT_LFLAGS}")
# Install Instructions.
- If(NOT ASMJIT_STATIC)
+ If(NOT ASMJIT_EMBED)
Install(TARGETS ${in_name} DESTINATION lib)
EndIf()
@@ -298,7 +298,7 @@ EndIf()
# [AsmJit - Headers]
# =============================================================================
-If(NOT ASMJIT_STATIC)
+If(NOT ASMJIT_EMBED)
ForEach(i ${ASMJIT_SRC})
Get_Filename_Component(path ${i} PATH)
Get_Filename_Component(name ${i} NAME)