From c45c435b7e754004b366f09715005fee59f80c4e Mon Sep 17 00:00:00 2001 From: fumiama Date: Wed, 19 May 2021 23:45:00 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BD=8E=E7=89=88=E6=9C=ACcm?= =?UTF-8?q?ake=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 32/CMakeLists.txt | 1 + 64/CMakeLists.txt | 1 + CMakeLists.txt | 1 - 3 files changed, 2 insertions(+), 1 deletion(-) 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