2025-12-19 00:58:00 +09:00
|
|
|
cmake_minimum_required(VERSION 3.11)
|
|
|
|
|
project(assaultfish)
|
|
|
|
|
|
|
|
|
|
include(GNUInstallDirs)
|
|
|
|
|
set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_FULL_LIBDIR}")
|
|
|
|
|
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
|
|
|
|
|
|
2026-01-12 06:41:04 +09:00
|
|
|
include_directories(external/stb)
|
2026-01-09 00:40:51 +09:00
|
|
|
|
2026-01-12 06:29:00 +09:00
|
|
|
set(MW_INSTALL_HEADERS OFF)
|
2026-01-12 06:41:04 +09:00
|
|
|
|
|
|
|
|
add_subdirectory(submodule/milsko)
|
2025-12-19 00:58:00 +09:00
|
|
|
|
2026-01-12 06:36:56 +09:00
|
|
|
add_subdirectory(external/lz4)
|
2026-01-12 06:41:04 +09:00
|
|
|
add_subdirectory(external/ode)
|
2026-01-12 06:36:56 +09:00
|
|
|
|
2026-01-07 04:24:22 +09:00
|
|
|
add_subdirectory(engine)
|
2025-12-19 08:52:48 +09:00
|
|
|
|
2026-01-09 00:40:51 +09:00
|
|
|
add_subdirectory(client)
|