1
0
Fork 0
Toy-Raytracer/CMakeLists.txt

39 lines
805 B
Text
Raw Permalink Normal View History

2019-05-27 13:50:49 +02:00
cmake_minimum_required(VERSION 3.14)
project(raycasting)
set(CMAKE_CXX_STANDARD 14)
# Detect and add SFML
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake_modules" ${CMAKE_MODULE_PATH})
find_package(SFML COMPONENTS system window graphics network audio REQUIRED)
if(NOT SFML_FOUND)
2024-01-28 22:08:35 +00:00
message(FATAL_ERROR "SFML could not be found")
2019-05-27 13:50:49 +02:00
endif()
set(LIBS
2024-01-28 22:08:35 +00:00
sfml-window
sfml-graphics)
find_package(ImGui QUIET)
find_package(ImGui-SFML QUIET)
if(NOT ImGui_FOUND OR NOT ImGui-SFML_FOUND OR NO_IMGUI)
2024-01-28 22:08:35 +00:00
message("*Not* building with ImGui")
else ()
2024-01-28 22:08:35 +00:00
message("Building with ImGui")
add_compile_definitions(IMGUI)
set(LIBS ${LIBS}
ImGui-SFML::ImGui-SFML)
endif()
add_compile_options(-Wall -Wextra)
add_executable(raycasting
2024-01-28 22:08:35 +00:00
main.cpp
Player.cpp
World.cpp
)
target_link_libraries(raycasting ${LIBS})