NumericalMethods/lib/CMakeLists.txt

11 lines
383 B
CMake
Raw Permalink Normal View History

2021-12-12 23:25:13 +00:00
add_library(nm_utils STATIC
"Window.cpp"
2021-12-16 15:35:37 +00:00
"RetentiveArray.hpp" "RetentiveObject.hpp" "RetentiveEntity.hpp" "VectorField.hpp" "VectorField.cpp")
2021-12-12 23:25:13 +00:00
target_include_directories(nm_utils PUBLIC ${SDL2_INCLUDE_DIRS} ${CMAKE_CURRENT_SOURCE_DIR})
target_link_libraries(nm_utils PUBLIC ${SDL2_LIBRARIES})
if(MSVC)
target_compile_definitions(nm_utils PUBLIC _CRT_SECURE_NO_WARNINGS)
endif()