ssxog/CMakeLists.txt

14 lines
371 B
CMake
Raw Permalink Normal View History

2022-06-18 02:54:01 -04:00
cmake_minimum_required(VERSION 3.19)
# Prohibit in-source tree builds.
if(" ${CMAKE_SOURCE_DIR}" STREQUAL " ${CMAKE_BINARY_DIR}")
message(FATAL_ERROR "In-source-tree builds are strictly prohibited. Please don't do them.")
endif()
include(${CMAKE_SOURCE_DIR}/cmake/Policies.cmake)
project(ssxog LANGUAGES C CXX)
add_subdirectory(src/libs)
2022-06-18 02:54:01 -04:00
add_subdirectory(src/bx)