From 61b9558c477fe4c3eafb4620665da09f9e2ad167 Mon Sep 17 00:00:00 2001 From: Eero Holmala Date: Fri, 28 Apr 2023 18:30:56 +0300 Subject: [PATCH] App: Remove redundant CMakeLists directive --- App/App/CMakeLists.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/App/App/CMakeLists.txt b/App/App/CMakeLists.txt index 9886560..22c6610 100644 --- a/App/App/CMakeLists.txt +++ b/App/App/CMakeLists.txt @@ -15,17 +15,15 @@ find_package(SDL2 CONFIG REQUIRED) find_package(OpenGL REQUIRED) find_package(GLEW REQUIRED) target_link_libraries(App PRIVATE - AppLib + AppLib SDL2::SDL2 SDL2::SDL2main OpenGL::GL GLEW::GLEW ) -target_include_directories(App PUBLIC "${CMAKE_SOURCE_DIR}/App/include") target_include_directories(App PUBLIC "${CMAKE_SOURCE_DIR}/AppLib/include/AppLib") - if (CMAKE_VERSION VERSION_GREATER 3.12) set_property(TARGET App PROPERTY CXX_STANDARD 20) endif() \ No newline at end of file