diff options
Diffstat (limited to 'nihil.ucl')
| -rw-r--r-- | nihil.ucl/CMakeLists.txt | 13 | ||||
| -rw-r--r-- | nihil.ucl/nihil.ucl.ccm | 9 |
2 files changed, 22 insertions, 0 deletions
diff --git a/nihil.ucl/CMakeLists.txt b/nihil.ucl/CMakeLists.txt new file mode 100644 index 0000000..59021aa --- /dev/null +++ b/nihil.ucl/CMakeLists.txt @@ -0,0 +1,13 @@ +# This source code is released into the public domain. + +pkg_check_modules(LIBUCL REQUIRED libucl) + +add_library(nihil.ucl STATIC) +target_sources(nihil.ucl PUBLIC + FILE_SET modules TYPE CXX_MODULES FILES + nihil.ucl.ccm) +target_compile_options(nihil.ucl PUBLIC ${LIBUCL_CFLAGS_OTHER}) +target_include_directories(nihil.ucl PUBLIC ${LIBUCL_INCLUDE_DIRS}) +target_link_libraries(nihil.ucl PUBLIC ${LIBUCL_LIBRARIES}) +target_link_directories(nihil.ucl PUBLIC ${LIBUCL_LIBRARY_DIRS}) + diff --git a/nihil.ucl/nihil.ucl.ccm b/nihil.ucl/nihil.ucl.ccm new file mode 100644 index 0000000..23151e0 --- /dev/null +++ b/nihil.ucl/nihil.ucl.ccm @@ -0,0 +1,9 @@ +/* + * This source code is released into the public domain. + */ + +module; + +export module nihil.ucl; + +// TODO: Implement. |
