Archived
1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
prism/engine/log/CMakeLists.txt
2020-08-11 12:07:21 -04:00

9 lines
271 B
CMake
Executable file

set(SRC
include/log.hpp
src/log.cpp)
add_library(Log STATIC ${SRC})
target_include_directories(Log PUBLIC include)
target_compile_features(Log PUBLIC cxx_std_17)
set_target_properties(Log PROPERTIES CXX_EXTENSIONS OFF)
target_link_libraries(Log PRIVATE Utility)