diff --git a/32/CMakeLists.txt b/32/CMakeLists.txt index b36dfeb..9aa3d73 100644 --- a/32/CMakeLists.txt +++ b/32/CMakeLists.txt @@ -5,4 +5,5 @@ SET(CMAKE_BUILD_TYPE "Release") add_library(base1432 STATIC base14.c) add_library(base14 SHARED base14.c) +INSTALL(TARGETS base14 LIBRARY DESTINATION lib) INSTALL(FILES base14.h DESTINATION include) \ No newline at end of file diff --git a/64/CMakeLists.txt b/64/CMakeLists.txt index 042a3ac..3b2730e 100644 --- a/64/CMakeLists.txt +++ b/64/CMakeLists.txt @@ -5,4 +5,5 @@ SET(CMAKE_BUILD_TYPE "Release") add_library(base1464 STATIC base14.c) add_library(base14 SHARED base14.c) +INSTALL(TARGETS base14 LIBRARY DESTINATION lib) INSTALL(FILES base14.h DESTINATION include) \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index 8cff5df..18e15bf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,5 +14,4 @@ ELSE() target_link_libraries(base16384 base1432) ENDIF() -INSTALL(TARGETS base14 LIBRARY DESTINATION lib) INSTALL(TARGETS base16384 RUNTIME DESTINATION bin) \ No newline at end of file