CMakeLists.txt
393 Bytes
cmake_minimum_required(VERSION 3.0)
project(config)
LIST( APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/submodules/cmake )
include(projectheader)
project_header(config)
# Build the artifacts
add_subdirectory(${CMAKE_SOURCE_DIR}/submodules/logger)
add_subdirectory(${CMAKE_SOURCE_DIR}/submodules/pugixml)
# Build the source code
add_subdirectory(src)
include(packaging)
package_component()