DarkflameServer/dECS/CMakeLists.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
166 B
CMake
Raw Normal View History

add_library(dECS STATIC "ECS.cpp")
target_include_directories(dECS PUBLIC .)
target_link_libraries(dECS PRIVATE dCommon)
target_compile_options(dECS PRIVATE "-Wall")