mirror of
https://gitlab.com/splashmapper/splash.git
synced 2026-02-13 15:25:43 +01:00
53 lines
1.7 KiB
CMake
53 lines
1.7 KiB
CMake
#
|
|
# Copyright (C) 2016 Splash authors
|
|
#
|
|
# This file is part of Splash.
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Splash is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Splash. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
# Disable warnings from external libs
|
|
add_definitions(-w)
|
|
|
|
#
|
|
# External sources
|
|
#
|
|
set(GLFW_BUILD_DOCS OFF CACHE BOOL "" FORCE)
|
|
set(GLFW_BUILD_TESTS OFF CACHE BOOL "" FORCE)
|
|
set(GLFW_BUILD_EXAMPLES OFF CACHE BOOL "" FORCE)
|
|
set(GLFW_BUILD_WAYLAND ON CACHE BOOL "" FORCE)
|
|
set(GLFW_INSTALL OFF CACHE BOOL "" FORCE)
|
|
add_subdirectory(glfw EXCLUDE_FROM_ALL)
|
|
|
|
set(WITH_STATIC ON CACHE BOOL "" FORCE)
|
|
set(WITH_TESTS OFF CACHE BOOL "" FORCE)
|
|
add_subdirectory(liblo/cmake EXCLUDE_FROM_ALL)
|
|
|
|
if (NOT USE_SYSTEM_LIBS)
|
|
set(SNAPPY_BUILD_TESTS OFF CACHE BOOL "" FORCE)
|
|
set(SNAPPY_BUILD_BENCHMARKS OFF CACHE BOOL "" FORCE)
|
|
add_subdirectory(snappy EXCLUDE_FROM_ALL)
|
|
endif()
|
|
|
|
#
|
|
# Tracy Profiler
|
|
#
|
|
if (PROFILE)
|
|
add_custom_command(OUTPUT run_tracy
|
|
COMMAND cd ${CMAKE_CURRENT_SOURCE_DIR}/tracy/profiler/ && cmake -GNinja -B build && ${CMAKE_COMMAND} --build build
|
|
COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/tracy/profiler/build/tracy-profiler
|
|
)
|
|
add_custom_target(tracy-profiler DEPENDS run_tracy)
|
|
endif()
|