mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
Add gflags library which is built with NO_THREADS definition.
This commit is contained in:
parent
ac3cb02be8
commit
7abcbdcbbd
2 changed files with 5 additions and 2 deletions
|
@ -132,7 +132,10 @@ endif ()
|
|||
include_directories ("${PROJECT_SOURCE_DIR}/src")
|
||||
include_directories ("${PROJECT_BINARY_DIR}/include")
|
||||
include_directories ("${PROJECT_BINARY_DIR}/include/${GFLAGS_NAMESPACE}")
|
||||
add_library (gflags ${GFLAGS_SRCS})
|
||||
|
||||
add_library (gflags ${GFLAGS_SRCS})
|
||||
add_library (gflags_nothreads ${GFLAGS_SRCS})
|
||||
set_target_properties (gflags_nothreads PROPERTIES COMPILE_DEFINITIONS NO_THREADS)
|
||||
|
||||
# ----------------------------------------------------------------------------
|
||||
# testing
|
||||
|
|
|
@ -11,7 +11,7 @@ set (TEMPDIR "${PROJECT_BINARY_DIR}/Testing/Temporary")
|
|||
# ----------------------------------------------------------------------------
|
||||
# common include directories and link libraries
|
||||
include_directories ("${CMAKE_CURRENT_SOURCE_DIR}")
|
||||
link_libraries (gflags)
|
||||
link_libraries (gflags_nothreads)
|
||||
|
||||
# ----------------------------------------------------------------------------
|
||||
# test executables
|
||||
|
|
Loading…
Add table
Reference in a new issue