blob: 2aa0dae1ba149b5f2b413af8f5b6d57b9a347138 (
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
26
27
|
# 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
read.cc
store.cc
string.cc
write.cc
)
if(NIHIL_TESTS)
add_subdirectory(tests)
enable_testing()
endif()
|