From 2c60e8825c56861cac639e79e5cb74108b947617 Mon Sep 17 00:00:00 2001 From: Mateja Date: Sat, 13 Feb 2021 14:20:34 +0100 Subject: Use CMake. --- CMakeLists.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..ca28adf --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,13 @@ +cmake_minimum_required(VERSION 3.13) +project(erender) + +set( CMAKE_CXX_STANDARD 17 ) + +aux_source_directory(./src/ SRC_LIST) +add_executable(${PROJECT_NAME} ${SRC_LIST}) + +add_subdirectory(external/SFML) +target_include_directories(${PROJECT_NAME} PUBLIC external/SFML/include) +target_link_directories(${PROJECT_NAME} PUBLIC external/SFML/lib) + +target_link_libraries(${PROJECT_NAME} sfml-graphics sfml-window sfml-system) -- cgit v1.2.3