More CMake stuff
This commit is contained in:
@ -11,35 +11,43 @@ set(CMAKE_C_STANDARD_REQUIRED ON)
|
|||||||
# Set some global flags
|
# Set some global flags
|
||||||
add_compile_definitions(
|
add_compile_definitions(
|
||||||
_CRT_SECURE_NO_WARNINGS=1
|
_CRT_SECURE_NO_WARNINGS=1
|
||||||
SETTING_ASSET_PREFIX="../../../assets/"
|
ASSET_PREFIX="../../../assets/"
|
||||||
)
|
)
|
||||||
|
|
||||||
# Which game are we building?
|
# Do initial set up depending on the build target type.
|
||||||
if(TARGET_GAME STREQUAL poker)
|
if(TARGET_TYPE STREQUAL tool)
|
||||||
add_compile_definitions(
|
set(TARGET_NAME tool)
|
||||||
GAME_NAME="Penny's Poker"
|
elseif(TARGET_TYPE STREQUAL test)
|
||||||
GAME_FILE="poker/game.h"
|
set(TARGET_NAME test)
|
||||||
GAME_TYPE=pokergame_t
|
else()
|
||||||
GAME_INIT=pokerGameInit
|
set(TARGET_NAME ${TARGET_GAME})
|
||||||
GAME_UPDATE=pokerGameUpdate
|
|
||||||
GAME_DISPOSE=pokerGameDispose
|
|
||||||
GAME_VERSION=1.0
|
|
||||||
)
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Set up the project.
|
# Set up the project
|
||||||
project(Dawn VERSION 1.0)
|
project(${TARGET_NAME} VERSION 1.0)
|
||||||
add_executable(${PROJECT_NAME})
|
add_executable(${PROJECT_NAME})
|
||||||
|
|
||||||
# Add libraries
|
# Now change sources depending on the target type
|
||||||
add_subdirectory(lib)
|
if(TARGET_TYPE STREQUAL tool)
|
||||||
|
|
||||||
# Add sources
|
elseif(TARGET_TYPE STREQUAL test)
|
||||||
add_subdirectory(src)
|
|
||||||
|
|
||||||
# Are we building a game, a tool or running tests?
|
|
||||||
if(TARGET_TYPE STREQUAL test)
|
|
||||||
add_subdirectory(test)
|
add_subdirectory(test)
|
||||||
else()
|
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)
|
add_subdirectory(client)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
# Add global sources.
|
||||||
|
add_subdirectory(lib)
|
||||||
|
add_subdirectory(src)
|
@ -31,4 +31,9 @@ target_sources(${PROJECT_NAME}
|
|||||||
target_include_directories(${PROJECT_NAME}
|
target_include_directories(${PROJECT_NAME}
|
||||||
PUBLIC
|
PUBLIC
|
||||||
${CMAKE_CURRENT_LIST_DIR}
|
${CMAKE_CURRENT_LIST_DIR}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# Sub
|
||||||
|
if(TARGET_TYPE STREQUAL game)
|
||||||
|
add_subdirectory(game)
|
||||||
|
endif()
|
@ -36,14 +36,14 @@ assetbuffer_t * assetBufferOpen(char *assetName) {
|
|||||||
// Get the directory based on the raw input by creating a new string.
|
// Get the directory based on the raw input by creating a new string.
|
||||||
FILE *fptr;
|
FILE *fptr;
|
||||||
size_t lenAsset = strlen(assetName);// Get the length of asset
|
size_t lenAsset = strlen(assetName);// Get the length of asset
|
||||||
size_t lenPrefix = strlen(SETTING_ASSET_PREFIX);// Get the length of the prefix
|
size_t lenPrefix = strlen(ASSET_PREFIX);// Get the length of the prefix
|
||||||
|
|
||||||
// Create str to house both the prefix and asset, and null terminator
|
// Create str to house both the prefix and asset, and null terminator
|
||||||
char *joined = malloc(lenAsset + lenPrefix + 1);
|
char *joined = malloc(lenAsset + lenPrefix + 1);
|
||||||
if(joined == NULL) return NULL;// Mem okay?
|
if(joined == NULL) return NULL;// Mem okay?
|
||||||
|
|
||||||
joined[0] = '\0';//Start at null
|
joined[0] = '\0';//Start at null
|
||||||
strcat(joined, SETTING_ASSET_PREFIX);//Add prefix
|
strcat(joined, ASSET_PREFIX);//Add prefix
|
||||||
strcat(joined, assetName);//Add body
|
strcat(joined, assetName);//Add body
|
||||||
|
|
||||||
printf("Opening up %s\n", joined);
|
printf("Opening up %s\n", joined);
|
||||||
|
@ -13,6 +13,10 @@
|
|||||||
#include "../script/scripter.h"
|
#include "../script/scripter.h"
|
||||||
#include "xml.h"
|
#include "xml.h"
|
||||||
|
|
||||||
|
#if !defined(ASSET_PREFIX)
|
||||||
|
#error Asset Prefix has not been defined.
|
||||||
|
#endif
|
||||||
|
|
||||||
/** Definition of an asset ready to be buffered */
|
/** Definition of an asset ready to be buffered */
|
||||||
typedef FILE assetbuffer_t;
|
typedef FILE assetbuffer_t;
|
||||||
|
|
||||||
|
28
src/game/CMakeLists.txt
Normal file
28
src/game/CMakeLists.txt
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
# Copyright (c) 2021 Dominic Msters
|
||||||
|
#
|
||||||
|
# This software is released under the MIT License.
|
||||||
|
# https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
# Definitions
|
||||||
|
|
||||||
|
# Libraries
|
||||||
|
|
||||||
|
# Sources
|
||||||
|
file(GLOB GAME_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/*.c)
|
||||||
|
file(GLOB GAME_HEADERS ${CMAKE_CURRENT_SOURCE_DIR}/*.h)
|
||||||
|
file(GLOB_RECURSE SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/${TARGET_GAME}/*.c)
|
||||||
|
file(GLOB_RECURSE HEADERS ${CMAKE_CURRENT_SOURCE_DIR}/${TARGET_GAME}*.h)
|
||||||
|
|
||||||
|
target_sources(${PROJECT_NAME}
|
||||||
|
PRIVATE
|
||||||
|
${GAME_SOURCES}
|
||||||
|
${SOURCES}
|
||||||
|
${GAME_HEADERS}
|
||||||
|
${HEADERS}
|
||||||
|
)
|
||||||
|
|
||||||
|
# Includes
|
||||||
|
target_include_directories(${PROJECT_NAME}
|
||||||
|
PUBLIC
|
||||||
|
${CMAKE_CURRENT_LIST_DIR}
|
||||||
|
)
|
24
tools/vn/character-sheet-maker/CMakeLists.txt
Normal file
24
tools/vn/character-sheet-maker/CMakeLists.txt
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# Copyright (c) 2021 Dominic Msters
|
||||||
|
#
|
||||||
|
# This software is released under the MIT License.
|
||||||
|
# https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
# Definitions
|
||||||
|
|
||||||
|
# Libraries
|
||||||
|
|
||||||
|
# Sources
|
||||||
|
file(GLOB_RECURSE SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/*.c)
|
||||||
|
file(GLOB_RECURSE HEADERS ${CMAKE_CURRENT_SOURCE_DIR}/*.h)
|
||||||
|
|
||||||
|
target_sources(${PROJECT_NAME}
|
||||||
|
PRIVATE
|
||||||
|
${SOURCES}
|
||||||
|
${HEADERS}
|
||||||
|
)
|
||||||
|
|
||||||
|
# Includes
|
||||||
|
target_include_directories(${PROJECT_NAME}
|
||||||
|
PUBLIC
|
||||||
|
${CMAKE_CURRENT_LIST_DIR}
|
||||||
|
)
|
@ -6,4 +6,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <libs.h>
|
|
||||||
|
|
||||||
|
int32_t main(int32_t argc, char *argv[]);
|
Reference in New Issue
Block a user