terravisor/CMakeLists.txt

73 lines
1.9 KiB
CMake
Raw Normal View History

2024-08-10 19:12:21 -04:00
cmake_minimum_required(VERSION 3.10)
project(TerraVisor)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
# Define output directories for different configurations
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR})
2024-08-11 14:52:19 -04:00
include(C:/users/jmchr/vcpkg/scripts/buildsystems/vcpkg.cmake)
2024-08-10 21:27:13 -04:00
# Find packages using vcpkg
find_package(GLEW CONFIG REQUIRED)
find_package(glfw3 CONFIG REQUIRED)
find_package(GLM CONFIG REQUIRED)
find_package(assimp CONFIG REQUIRED)
2024-08-10 21:27:13 -04:00
2024-08-10 19:12:21 -04:00
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG "${CMAKE_BINARY_DIR}")
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE "${CMAKE_BINARY_DIR}")
# Add source files
file(GLOB_RECURSE SOURCES
"${CMAKE_SOURCE_DIR}/src/*.cpp"
)
# Add header files
file(GLOB_RECURSE HEADERS
2024-08-10 21:27:13 -04:00
"${CMAKE_SOURCE_DIR}/headers/*.h"
2024-08-10 19:12:21 -04:00
)
# Add shader files
file(GLOB SHADERS
"${CMAKE_SOURCE_DIR}/shaders/*.glsl"
)
2024-08-11 14:52:19 -04:00
# Add ImGui source files
file(GLOB IMGUI_SOURCES
"${CMAKE_SOURCE_DIR}/imgui/*.cpp"
"${CMAKE_SOURCE_DIR}/imgui/backends/imgui_impl_glfw.cpp"
"${CMAKE_SOURCE_DIR}/imgui/backends/imgui_impl_opengl3.cpp"
)
2024-08-10 19:12:21 -04:00
# Add the executable
2024-08-11 14:52:19 -04:00
add_executable(TerraVisor ${SOURCES} ${HEADERS} ${IMGUI_SOURCES})
2024-08-10 19:12:21 -04:00
2024-08-10 21:27:13 -04:00
# Include directories
2024-08-11 14:52:19 -04:00
include_directories(
${CMAKE_SOURCE_DIR}/headers
${CMAKE_SOURCE_DIR}/imgui
${CMAKE_SOURCE_DIR}/imgui/backends
)
2024-08-10 19:12:21 -04:00
2024-08-10 21:27:13 -04:00
# Link libraries using vcpkg
2024-08-11 14:52:19 -04:00
target_link_libraries(TerraVisor PRIVATE GLEW::GLEW glfw glm::glm assimp::assimp)
2024-08-10 19:12:21 -04:00
# Custom target for shaders
add_custom_target(copy_shaders ALL
COMMAND ${CMAKE_COMMAND} -E copy_directory
${CMAKE_SOURCE_DIR}/shaders ${CMAKE_BINARY_DIR}/shaders
)
# Set subsystem based on build type
if (WIN32)
if (CMAKE_BUILD_TYPE STREQUAL "Release")
set_target_properties(TerraVisor PROPERTIES LINK_FLAGS "-Wl,--subsystem,windows")
else()
set_target_properties(TerraVisor PROPERTIES LINK_FLAGS "-Wl,--subsystem,console")
endif()
endif()
# Ensure shaders are copied before building the executable
add_dependencies(TerraVisor copy_shaders)