git-subtree-dir: xo-webutil git-subtree-mainline:86cd0a812bgit-subtree-split:8e75838950
28 lines
757 B
CMake
28 lines
757 B
CMake
# xo-webutil/CMakeLists.txt
|
|
|
|
cmake_minimum_required(VERSION 3.10)
|
|
|
|
project(webutil VERSION 1.0)
|
|
|
|
include(GNUInstallDirs)
|
|
include(cmake/xo-bootstrap-macros.cmake)
|
|
|
|
xo_cxx_toplevel_options3()
|
|
|
|
# ----------------------------------------------------------------
|
|
# common c++ settings
|
|
|
|
# PROJECT_CXX_FLAGS: bespoke for this project - usually empty
|
|
set(PROJECT_CXX_FLAGS "")
|
|
#set(PROJECT_CXX_FLAGS "-fconcepts-diagnostics-depth=2")
|
|
add_definitions(${PROJECT_CXX_FLAGS})
|
|
|
|
# ----------------------------------------------------------------
|
|
# sources
|
|
|
|
add_subdirectory(src/webutil)
|
|
|
|
# ----------------------------------------------------------------
|
|
# provide find_package() support
|
|
|
|
xo_export_cmake_config(${PROJECT_NAME} ${PROJECT_VERSION} ${PROJECT_NAME}Targets)
|