Skip to content

Commit bfcf815

Browse files
ChrisThrashereXpl0it3r
authored andcommitted
Remove comments
1 parent b2c1b23 commit bfcf815

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

CMakeLists.txt

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,10 @@
11
cmake_minimum_required(VERSION 3.15)
2-
32
project(CMakeSFMLProject LANGUAGES CXX)
43

5-
# Tell CMake to build a executable
6-
add_executable(CMakeSFMLProject src/main.cpp)
7-
8-
# CMake SFML Project uses C++17 features
9-
target_compile_features(CMakeSFMLProject PRIVATE cxx_std_17)
10-
11-
# Find SFML
124
find_package(SFML 2.5 COMPONENTS graphics REQUIRED)
135

14-
# Link SFML
6+
add_executable(CMakeSFMLProject src/main.cpp)
157
target_link_libraries(CMakeSFMLProject PRIVATE sfml-graphics)
8+
target_compile_features(CMakeSFMLProject PRIVATE cxx_std_17)
169

17-
# Install executable
1810
install(TARGETS CMakeSFMLProject)

0 commit comments

Comments
 (0)