summaryrefslogtreecommitdiff
path: root/src/CMakeLists.txt
blob: b30833ea2a980c73ca7a10ee0b82554ff1bac463 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#Defined executable
add_executable(
	2P11
	./main.cpp
)

#Find all libraries
find_package(SFML 2.2 COMPONENTS system window graphics audio REQUIRED)


#Include "Includes" and "Libraries"
include_directories(${SFML_INCLUDE_DIR})
target_link_libraries(2P11 ${SFML_LIBRARIES})

message("${SFML_LIBRARIES}")