summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--chill/CMakeLists.txt2
-rw-r--r--omegalib/code_gen/CMakeLists.txt2
-rw-r--r--omegalib/omega_lib/CMakeLists.txt2
3 files changed, 3 insertions, 3 deletions
diff --git a/chill/CMakeLists.txt b/chill/CMakeLists.txt
index 735a768..50ab420 100644
--- a/chill/CMakeLists.txt
+++ b/chill/CMakeLists.txt
@@ -44,7 +44,7 @@ set(COMMON_FLAGS "-DBUILD_ROSE -DCHILL_BUILD_DATE=\"${build_date}\" -DCHILL_BUIL
set(CMAKE_CXX_FLAGS "-DPYTHON ${COMMON_FLAGS}")
if (DEFINED OMEGAHOME)
- link_directories(${OMEGAHOME}/lib/static)
+ link_directories(${OMEGAHOME}/lib)
set(OMEGA_INC ${OMEGAHOME}/include)
else()
set(OMEGA_INC ${PROJECT_SOURCE_DIR}/omegalib/include)
diff --git a/omegalib/code_gen/CMakeLists.txt b/omegalib/code_gen/CMakeLists.txt
index 7f42a56..2c106b8 100644
--- a/omegalib/code_gen/CMakeLists.txt
+++ b/omegalib/code_gen/CMakeLists.txt
@@ -25,6 +25,6 @@ add_library(codegen
add_dependencies(codegen omega)
install(TARGETS codegen
- ARCHIVE DESTINATION lib/static)
+ ARCHIVE DESTINATION lib)
install(DIRECTORY include
DESTINATION .)
diff --git a/omegalib/omega_lib/CMakeLists.txt b/omegalib/omega_lib/CMakeLists.txt
index 1026386..c08cf5f 100644
--- a/omegalib/omega_lib/CMakeLists.txt
+++ b/omegalib/omega_lib/CMakeLists.txt
@@ -64,7 +64,7 @@ add_library(omega
)
install(TARGETS omega
- ARCHIVE DESTINATION lib/static)
+ ARCHIVE DESTINATION lib)
install(DIRECTORY include
DESTINATION .)