Disable Useless Targets

This commit is contained in:
Paul Pan 2023-03-09 09:53:38 +08:00
parent 1237a5bfea
commit 53b5dd2e7b

View File

@ -18,6 +18,8 @@ target_include_directories(
target_link_libraries(sgnl INTERFACE Threads::Threads)
target_compile_features(sgnl INTERFACE cxx_std_17)
#[[
include(EnableWarnings)
enable_warnings(sgnl INTERFACE)
@ -45,3 +47,4 @@ add_subdirectory("test" EXCLUDE_FROM_ALL)
add_executable(example EXCLUDE_FROM_ALL "example/example.cpp")
target_link_libraries(example sgnl::sgnl)
]]