53 lines
1.2 KiB
CMake
53 lines
1.2 KiB
CMake
# Copyright (c) 2021 Dominic Msters
|
|
#
|
|
# This software is released under the MIT License.
|
|
# https://opensource.org/licenses/MIT
|
|
|
|
# Set up the base CMake stuff.
|
|
cmake_minimum_required(VERSION 3.13)
|
|
set(CMAKE_C_STANDARD 99)
|
|
set(CMAKE_C_STANDARD_REQUIRED ON)
|
|
|
|
# Set some global flags
|
|
add_compile_definitions(
|
|
_CRT_SECURE_NO_WARNINGS=1
|
|
ASSET_PREFIX="../../../assets/"
|
|
)
|
|
|
|
# Do initial set up depending on the build target type.
|
|
if(TARGET_TYPE STREQUAL tool)
|
|
set(TARGET_NAME tool)
|
|
elseif(TARGET_TYPE STREQUAL test)
|
|
set(TARGET_NAME test)
|
|
else()
|
|
set(TARGET_NAME ${TARGET_GAME})
|
|
endif()
|
|
|
|
# Set up the project
|
|
project(${TARGET_NAME} VERSION 1.0)
|
|
add_executable(${PROJECT_NAME})
|
|
|
|
# Now change sources depending on the target type
|
|
if(TARGET_TYPE STREQUAL tool)
|
|
|
|
elseif(TARGET_TYPE STREQUAL test)
|
|
add_subdirectory(test)
|
|
else()
|
|
if(TARGET_GAME STREQUAL poker)
|
|
add_compile_definitions(
|
|
GAME_NAME="Penny's Poker"
|
|
GAME_FILE="poker/game.h"
|
|
GAME_TYPE=pokergame_t
|
|
GAME_INIT=pokerGameInit
|
|
GAME_UPDATE=pokerGameUpdate
|
|
GAME_DISPOSE=pokerGameDispose
|
|
GAME_VERSION=1.0
|
|
)
|
|
endif()
|
|
|
|
add_subdirectory(client)
|
|
endif()
|
|
|
|
# Add global sources.
|
|
add_subdirectory(lib)
|
|
add_subdirectory(src) |