move in plugins, external still missing

This commit is contained in:
2024-02-04 12:14:23 +01:00
parent 6a48ace06f
commit d948897c3e
9 changed files with 233 additions and 17 deletions

19
src/CMakeLists.txt Normal file
View File

@@ -0,0 +1,19 @@
add_library(solanaceae_zox
./solanaceae/zox/ngc.hpp
./solanaceae/zox/ngc.cpp
# TODO: seperate out
./solanaceae/zox/ngc_hs.hpp
./solanaceae/zox/ngc_hs.cpp
)
target_include_directories(solanaceae_zox PUBLIC .)
target_compile_features(solanaceae_zox PUBLIC cxx_std_17)
target_link_libraries(solanaceae_zox PUBLIC
solanaceae_util
solanaceae_message3
solanaceae_toxcore
solanaceae_tox_contacts
solanaceae_tox_messages
)