Флаг для разрешения компиляции примеров
This commit is contained in:
parent
890272409b
commit
06f842edd5
@ -21,6 +21,8 @@ list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/find)
|
||||
|
||||
include(CMLibCommon)
|
||||
|
||||
option(BUILD_EXAMPLES "Build examples" OFF)
|
||||
|
||||
# Поиск библиотек с помощью pkgconfig
|
||||
find_package(PkgConfig)
|
||||
|
||||
@ -45,8 +47,10 @@ add_subdirectory(src/filesystem)
|
||||
add_subdirectory(src/log)
|
||||
|
||||
# Примеры
|
||||
add_subdirectory(examples/filesystem)
|
||||
add_subdirectory(examples/log)
|
||||
if (BUILD_EXAMPLES)
|
||||
add_subdirectory(examples/filesystem)
|
||||
add_subdirectory(examples/log)
|
||||
endif()
|
||||
|
||||
add_breathe_target(
|
||||
TARGET_NAME doc-breathe
|
||||
|
Loading…
Reference in New Issue
Block a user