diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-10-16 01:16:32 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-10-16 01:16:32 +0200 |
| commit | c4979825b7e71a3499ecc4529313af78a1945ebd (patch) | |
| tree | 66bfda1abe2c9c34545b965a68f2dc985db56ef0 /CMakeLists.txt | |
| parent | cc9eae6d01a016613eab00c324878c3c4d454445 (diff) | |
CMakeLists.txt: Stop forcing STATIC libraryv0.1.0-rc2
Distribution packagers might prefer dynstr as a shared object.
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 91609ea..0ca5efa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,7 +13,7 @@ # limitations under the License. cmake_minimum_required(VERSION 3.0) project(dynstr C) -add_library(${PROJECT_NAME} STATIC "dynstr.c") +add_library(${PROJECT_NAME} "dynstr.c") target_include_directories(${PROJECT_NAME} PUBLIC "include") install(TARGETS ${PROJECT_NAME}) install(DIRECTORY include/ TYPE INCLUDE) |
