blob: 6b1073d6b9aaea077d3e90a24ebf729f2e5f5c47 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# This source code is released into the public domain.
add_library(nihil.config STATIC)
target_link_libraries(nihil.config PUBLIC nihil nihil.ucl)
target_sources(nihil.config
PUBLIC FILE_SET modules TYPE CXX_MODULES FILES
nihil.config.ccm
error.ccm
read.ccm
store.ccm
write.ccm
option.ccm
string.ccm
PRIVATE
option.cc
store.cc
string.cc
)
if(NIHIL_TESTS)
add_subdirectory(tests)
enable_testing()
endif()
|