Browse Source

Issue #598: avoid building static libraries twice.

tags/json-c-0.15-20200726
Eric Haszlakiewicz 5 years ago
parent
commit
4f43a077a4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      CMakeLists.txt

+ 1
- 1
CMakeLists.txt View File

@@ -402,7 +402,7 @@ target_include_directories(${PROJECT_NAME}
) )


# Allow to build static and shared libraries at the same time # Allow to build static and shared libraries at the same time
if (BUILD_STATIC_LIBS)
if (BUILD_STATIC_LIBS AND BUILD_SHARED_LIBS)
set(STATIC_LIB ${PROJECT_NAME}-static) set(STATIC_LIB ${PROJECT_NAME}-static)
add_library(${STATIC_LIB} STATIC add_library(${STATIC_LIB} STATIC
${JSON_C_SOURCES} ${JSON_C_SOURCES}


Loading…
Cancel
Save