11 lines
161 B
CMake
11 lines
161 B
CMake
add_library(Garbage INTERFACE)
|
|
|
|
target_compile_features(Garbage
|
|
INTERFACE
|
|
cxx_std_20
|
|
)
|
|
|
|
target_include_directories(Garbage
|
|
INTERFACE
|
|
"Include"
|
|
)
|