CMakeLists for each C file
This commit is contained in:
@ -7,13 +7,11 @@
|
|||||||
cmake_minimum_required(VERSION 3.13)
|
cmake_minimum_required(VERSION 3.13)
|
||||||
set(CMAKE_C_STANDARD 99)
|
set(CMAKE_C_STANDARD 99)
|
||||||
set(CMAKE_C_STANDARD_REQUIRED ON)
|
set(CMAKE_C_STANDARD_REQUIRED ON)
|
||||||
set(CMAKE_CXX_STANDARD 11)
|
|
||||||
set(CMAKE_CXX_STANDARD_REQUIRED True)
|
|
||||||
|
|
||||||
# Set some global flags
|
# Set some global flags
|
||||||
add_compile_definitions(
|
add_compile_definitions(
|
||||||
_CRT_SECURE_NO_WARNINGS=1
|
_CRT_SECURE_NO_WARNINGS=1
|
||||||
ASSET_PREFIX="../assets/"
|
ASSET_PREFIX="assets/"
|
||||||
)
|
)
|
||||||
|
|
||||||
# Do initial set up depending on the build target type.
|
# Do initial set up depending on the build target type.
|
||||||
@ -37,6 +35,15 @@ set(ASSETS_SOURCE_DIR "${ROOT_DIR}/assets")
|
|||||||
set(ASSETS_BUILD_DIR "${BUILD_DIR}/assets")
|
set(ASSETS_BUILD_DIR "${BUILD_DIR}/assets")
|
||||||
set(TEMP_DIR "${BUILD_DIR}/temp")
|
set(TEMP_DIR "${BUILD_DIR}/temp")
|
||||||
|
|
||||||
|
# Add global sources.
|
||||||
|
add_subdirectory(lib)
|
||||||
|
|
||||||
|
# Setup Platform specific libraries
|
||||||
|
set(LIBS_PLATFORM "")
|
||||||
|
if(NOT WIN32)
|
||||||
|
list(APPEND LIBS_PLATFORM m)
|
||||||
|
endif()
|
||||||
|
|
||||||
# Include tools
|
# Include tools
|
||||||
add_subdirectory(tools)
|
add_subdirectory(tools)
|
||||||
|
|
||||||
@ -47,8 +54,6 @@ elseif(TARGET_TYPE STREQUAL game)
|
|||||||
add_subdirectory(client)
|
add_subdirectory(client)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Add global sources.
|
|
||||||
add_subdirectory(lib)
|
|
||||||
|
|
||||||
# Set up shared assets
|
# Set up shared assets
|
||||||
tool_copy(shader_textured
|
tool_copy(shader_textured
|
||||||
|
@ -3,4 +3,5 @@
|
|||||||
# This software is released under the MIT License.
|
# This software is released under the MIT License.
|
||||||
# https://opensource.org/licenses/MIT
|
# https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
|
||||||
add_subdirectory(glfwclient)
|
add_subdirectory(glfwclient)
|
@ -17,14 +17,9 @@ target_link_libraries(${PROJECT_NAME}
|
|||||||
glad
|
glad
|
||||||
)
|
)
|
||||||
|
|
||||||
# Sources
|
|
||||||
file(GLOB_RECURSE SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/*.c)
|
|
||||||
file(GLOB_RECURSE HEADERS ${CMAKE_CURRENT_SOURCE_DIR}/*.h)
|
|
||||||
|
|
||||||
target_sources(${PROJECT_NAME}
|
target_sources(${PROJECT_NAME}
|
||||||
PRIVATE
|
PRIVATE
|
||||||
${SOURCES}
|
glfwclient.c
|
||||||
${HEADERS}
|
|
||||||
)
|
)
|
||||||
|
|
||||||
# Includes
|
# Includes
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <glad/glad.h>
|
#include <glad/glad.h>
|
||||||
#include <GLFW/glfw3.h>
|
#include <GLFW/glfw3.h>
|
||||||
#include "libs.h"
|
#include <libs.h>
|
||||||
#include "display/render.h"
|
#include "display/render.h"
|
||||||
#include "input/input.h"
|
#include "input/input.h"
|
||||||
#include "game/game.h"
|
#include "game/game.h"
|
||||||
|
@ -10,6 +10,5 @@ add_subdirectory(duktape)
|
|||||||
add_subdirectory(glad)
|
add_subdirectory(glad)
|
||||||
|
|
||||||
# STB
|
# STB
|
||||||
file(GLOB_RECURSE STB_SOURCES stb/*.h)
|
|
||||||
add_library(stb INTERFACE)
|
add_library(stb INTERFACE)
|
||||||
target_include_directories(stb INTERFACE stb)
|
target_include_directories(stb INTERFACE stb)
|
@ -6,30 +6,38 @@
|
|||||||
# Dawn Libraries
|
# Dawn Libraries
|
||||||
target_link_libraries(${PROJECT_NAME}
|
target_link_libraries(${PROJECT_NAME}
|
||||||
PUBLIC
|
PUBLIC
|
||||||
|
${LIBS_PLATFORM}
|
||||||
glad
|
glad
|
||||||
cglm
|
cglm
|
||||||
stb
|
stb
|
||||||
duktape
|
duktape
|
||||||
)
|
)
|
||||||
|
|
||||||
|
target_include_directories(${PROJECT_NAME}
|
||||||
|
PRIVATE
|
||||||
|
${LIBS_PLATFORM}
|
||||||
|
)
|
||||||
|
|
||||||
|
# Source H files
|
||||||
target_include_directories(${PROJECT_NAME}
|
target_include_directories(${PROJECT_NAME}
|
||||||
PUBLIC
|
PUBLIC
|
||||||
${CMAKE_CURRENT_LIST_DIR}
|
${CMAKE_CURRENT_LIST_DIR}
|
||||||
)
|
)
|
||||||
|
|
||||||
# Dawn Sources
|
# Add in each part of the engine.
|
||||||
file(GLOB_RECURSE SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/*.c(pp|xx))
|
add_subdirectory(display)
|
||||||
file(GLOB_RECURSE HEADERS ${CMAKE_CURRENT_SOURCE_DIR}/*.h(pp|xx))
|
add_subdirectory(engine)
|
||||||
|
add_subdirectory(epoch)
|
||||||
# Exclude Game Sources
|
add_subdirectory(file)
|
||||||
list(FILTER SOURCES EXCLUDE REGEX ".*games\\/.*")
|
add_subdirectory(input)
|
||||||
list(FILTER HEADERS EXCLUDE REGEX ".*games\\/.*")
|
add_subdirectory(locale)
|
||||||
|
add_subdirectory(physics)
|
||||||
target_sources(${PROJECT_NAME}
|
add_subdirectory(poker)
|
||||||
PRIVATE
|
add_subdirectory(save)
|
||||||
${SOURCES}
|
add_subdirectory(scene)
|
||||||
${HEADERS}
|
add_subdirectory(ui)
|
||||||
)
|
add_subdirectory(util)
|
||||||
|
add_subdirectory(vn)
|
||||||
|
|
||||||
# Add Game Sources
|
# Add Game Sources
|
||||||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/games/${TARGET_GAME})
|
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/games/${TARGET_GAME})
|
24
src/display/CMakeLists.txt
Normal file
24
src/display/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
|
||||||
|
|
||||||
|
# Sources
|
||||||
|
target_sources(${PROJECT_NAME}
|
||||||
|
PRIVATE
|
||||||
|
bitmapfont.c
|
||||||
|
camera.c
|
||||||
|
font.c
|
||||||
|
framebuffer.c
|
||||||
|
matrix.c
|
||||||
|
render.c
|
||||||
|
renderlist.c
|
||||||
|
shader.c
|
||||||
|
spritebatch.c
|
||||||
|
texture.c
|
||||||
|
tileset.c
|
||||||
|
)
|
||||||
|
|
||||||
|
# Subdirs
|
||||||
|
add_subdirectory(animation)
|
||||||
|
add_subdirectory(primitive)
|
13
src/display/animation/CMakeLists.txt
Normal file
13
src/display/animation/CMakeLists.txt
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# Copyright (c) 2021 Dominic Msters
|
||||||
|
#
|
||||||
|
# This software is released under the MIT License.
|
||||||
|
# https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
# Sources
|
||||||
|
target_sources(${PROJECT_NAME}
|
||||||
|
PRIVATE
|
||||||
|
animation.c
|
||||||
|
easing.c
|
||||||
|
queue.c
|
||||||
|
timeline.c
|
||||||
|
)
|
13
src/display/primitive/CMakeLists.txt
Normal file
13
src/display/primitive/CMakeLists.txt
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# Copyright (c) 2021 Dominic Msters
|
||||||
|
#
|
||||||
|
# This software is released under the MIT License.
|
||||||
|
# https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
# Sources
|
||||||
|
target_sources(${PROJECT_NAME}
|
||||||
|
PRIVATE
|
||||||
|
cube.c
|
||||||
|
primitive.c
|
||||||
|
quad.c
|
||||||
|
skywall.c
|
||||||
|
)
|
@ -86,11 +86,8 @@ renderpass_t * renderListRenderPass(
|
|||||||
*
|
*
|
||||||
* @param list List to render.
|
* @param list List to render.
|
||||||
* @param shader Shader to use while rendering.
|
* @param shader Shader to use while rendering.
|
||||||
* @param uniforms Uniforms for the render list. [ view, proj, model, ...text ]
|
|
||||||
*/
|
*/
|
||||||
void renderListRender(
|
void renderListRender(renderlist_t *list, shader_t *shader);
|
||||||
renderlist_t *list, shader_t *shader, shaderuniform_t *uniforms
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Takes a previously rendered render list and renders it to the backbuffer.
|
* Takes a previously rendered render list and renders it to the backbuffer.
|
||||||
|
12
src/engine/CMakeLists.txt
Normal file
12
src/engine/CMakeLists.txt
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
# Copyright (c) 2021 Dominic Msters
|
||||||
|
#
|
||||||
|
# This software is released under the MIT License.
|
||||||
|
# https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
# Sources
|
||||||
|
target_sources(${PROJECT_NAME}
|
||||||
|
PRIVATE
|
||||||
|
client.c
|
||||||
|
engine.c
|
||||||
|
thread.c
|
||||||
|
)
|
10
src/epoch/CMakeLists.txt
Normal file
10
src/epoch/CMakeLists.txt
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# Copyright (c) 2021 Dominic Msters
|
||||||
|
#
|
||||||
|
# This software is released under the MIT License.
|
||||||
|
# https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
# Sources
|
||||||
|
target_sources(${PROJECT_NAME}
|
||||||
|
PRIVATE
|
||||||
|
epoch.c
|
||||||
|
)
|
16
src/file/CMakeLists.txt
Normal file
16
src/file/CMakeLists.txt
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# Copyright (c) 2021 Dominic Msters
|
||||||
|
#
|
||||||
|
# This software is released under the MIT License.
|
||||||
|
# https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
# Sources
|
||||||
|
target_sources(${PROJECT_NAME}
|
||||||
|
PRIVATE
|
||||||
|
asset.c
|
||||||
|
assetmanager.c
|
||||||
|
csv.c
|
||||||
|
xml.c
|
||||||
|
)
|
||||||
|
|
||||||
|
# Subdirs
|
||||||
|
add_subdirectory(loaders)
|
14
src/file/loaders/CMakeLists.txt
Normal file
14
src/file/loaders/CMakeLists.txt
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
# Copyright (c) 2021 Dominic Msters
|
||||||
|
#
|
||||||
|
# This software is released under the MIT License.
|
||||||
|
# https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
# Sources
|
||||||
|
target_sources(${PROJECT_NAME}
|
||||||
|
PRIVATE
|
||||||
|
font.c
|
||||||
|
item.c
|
||||||
|
scaledtexture.c
|
||||||
|
shader.c
|
||||||
|
texture.c
|
||||||
|
)
|
10
src/input/CMakeLists.txt
Normal file
10
src/input/CMakeLists.txt
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# Copyright (c) 2021 Dominic Msters
|
||||||
|
#
|
||||||
|
# This software is released under the MIT License.
|
||||||
|
# https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
# Sources
|
||||||
|
target_sources(${PROJECT_NAME}
|
||||||
|
PRIVATE
|
||||||
|
input.c
|
||||||
|
)
|
@ -36,6 +36,7 @@
|
|||||||
// Unix Fixes
|
// Unix Fixes
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
|
#include <errno.h>
|
||||||
|
|
||||||
typedef pthread_t threadhandle_t;
|
typedef pthread_t threadhandle_t;
|
||||||
#define sysThreadCreate(mthd,otp,usr) pthread_create(&otp,NULL,mthd,usr)
|
#define sysThreadCreate(mthd,otp,usr) pthread_create(&otp,NULL,mthd,usr)
|
||||||
|
10
src/locale/CMakeLists.txt
Normal file
10
src/locale/CMakeLists.txt
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# Copyright (c) 2021 Dominic Msters
|
||||||
|
#
|
||||||
|
# This software is released under the MIT License.
|
||||||
|
# https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
# Sources
|
||||||
|
target_sources(${PROJECT_NAME}
|
||||||
|
PRIVATE
|
||||||
|
language.c
|
||||||
|
)
|
12
src/physics/CMakeLists.txt
Normal file
12
src/physics/CMakeLists.txt
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
# Copyright (c) 2021 Dominic Msters
|
||||||
|
#
|
||||||
|
# This software is released under the MIT License.
|
||||||
|
# https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
# Sources
|
||||||
|
target_sources(${PROJECT_NAME}
|
||||||
|
PRIVATE
|
||||||
|
aabb.c
|
||||||
|
sphere.c
|
||||||
|
vector.c
|
||||||
|
)
|
17
src/poker/CMakeLists.txt
Normal file
17
src/poker/CMakeLists.txt
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# Copyright (c) 2021 Dominic Msters
|
||||||
|
#
|
||||||
|
# This software is released under the MIT License.
|
||||||
|
# https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
# Sources
|
||||||
|
target_sources(${PROJECT_NAME}
|
||||||
|
PRIVATE
|
||||||
|
bet.c
|
||||||
|
card.c
|
||||||
|
dealer.c
|
||||||
|
player.c
|
||||||
|
poker.c
|
||||||
|
pot.c
|
||||||
|
turn.c
|
||||||
|
winner.c
|
||||||
|
)
|
10
src/save/CMakeLists.txt
Normal file
10
src/save/CMakeLists.txt
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# Copyright (c) 2021 Dominic Msters
|
||||||
|
#
|
||||||
|
# This software is released under the MIT License.
|
||||||
|
# https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
# Sources
|
||||||
|
target_sources(${PROJECT_NAME}
|
||||||
|
PRIVATE
|
||||||
|
save.c
|
||||||
|
)
|
10
src/scene/CMakeLists.txt
Normal file
10
src/scene/CMakeLists.txt
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# Copyright (c) 2021 Dominic Msters
|
||||||
|
#
|
||||||
|
# This software is released under the MIT License.
|
||||||
|
# https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
# Sources
|
||||||
|
target_sources(${PROJECT_NAME}
|
||||||
|
PRIVATE
|
||||||
|
scene.c
|
||||||
|
)
|
19
src/ui/CMakeLists.txt
Normal file
19
src/ui/CMakeLists.txt
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
# Copyright (c) 2021 Dominic Msters
|
||||||
|
#
|
||||||
|
# This software is released under the MIT License.
|
||||||
|
# https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
# Sources
|
||||||
|
target_sources(${PROJECT_NAME}
|
||||||
|
PRIVATE
|
||||||
|
align.c
|
||||||
|
breakpoint.c
|
||||||
|
frame.c
|
||||||
|
framedtextmenu.c
|
||||||
|
grid.c
|
||||||
|
image.c
|
||||||
|
label.c
|
||||||
|
menu.c
|
||||||
|
rectangle.c
|
||||||
|
textmenu.c
|
||||||
|
)
|
15
src/util/CMakeLists.txt
Normal file
15
src/util/CMakeLists.txt
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Copyright (c) 2021 Dominic Msters
|
||||||
|
#
|
||||||
|
# This software is released under the MIT License.
|
||||||
|
# https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
# Sources
|
||||||
|
target_sources(${PROJECT_NAME}
|
||||||
|
PRIVATE
|
||||||
|
array.c
|
||||||
|
dictionary.c
|
||||||
|
dynarray.c
|
||||||
|
list.c
|
||||||
|
mem.c
|
||||||
|
string.c
|
||||||
|
)
|
15
src/vn/CMakeLists.txt
Normal file
15
src/vn/CMakeLists.txt
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Copyright (c) 2021 Dominic Msters
|
||||||
|
#
|
||||||
|
# This software is released under the MIT License.
|
||||||
|
# https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
# Sources
|
||||||
|
target_sources(${PROJECT_NAME}
|
||||||
|
PRIVATE
|
||||||
|
vncharacter.c
|
||||||
|
vnscene.c
|
||||||
|
)
|
||||||
|
|
||||||
|
# Subdirs
|
||||||
|
add_subdirectory(conversation)
|
||||||
|
add_subdirectory(ui)
|
11
src/vn/conversation/CMakeLists.txt
Normal file
11
src/vn/conversation/CMakeLists.txt
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
# Copyright (c) 2021 Dominic Msters
|
||||||
|
#
|
||||||
|
# This software is released under the MIT License.
|
||||||
|
# https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
# Sources
|
||||||
|
target_sources(${PROJECT_NAME}
|
||||||
|
PRIVATE
|
||||||
|
talk.c
|
||||||
|
vnconversation.c
|
||||||
|
)
|
10
src/vn/ui/CMakeLists.txt
Normal file
10
src/vn/ui/CMakeLists.txt
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# Copyright (c) 2021 Dominic Msters
|
||||||
|
#
|
||||||
|
# This software is released under the MIT License.
|
||||||
|
# https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
# Sources
|
||||||
|
target_sources(${PROJECT_NAME}
|
||||||
|
PRIVATE
|
||||||
|
vntextbox.c
|
||||||
|
)
|
@ -24,6 +24,10 @@ target_link_libraries(texture_generation
|
|||||||
PUBLIC
|
PUBLIC
|
||||||
stb
|
stb
|
||||||
)
|
)
|
||||||
|
target_link_libraries(texture_generation
|
||||||
|
PRIVATE
|
||||||
|
${LIBS_PLATFORM}
|
||||||
|
)
|
||||||
|
|
||||||
# Function for creating the target
|
# Function for creating the target
|
||||||
function(tool_texture target in out)
|
function(tool_texture target in out)
|
||||||
|
@ -5,7 +5,8 @@
|
|||||||
|
|
||||||
function(tool_assets args)
|
function(tool_assets args)
|
||||||
add_custom_target(assets
|
add_custom_target(assets
|
||||||
COMMAND tar -C ${ASSETS_BUILD_DIR} -czvf assets.tar.gz *
|
# COMMAND tar -C ${ASSETS_BUILD_DIR} -czvf assets.tar.gz *
|
||||||
|
COMMAND echo ${ASSETS_BUILD_DIR}
|
||||||
DEPENDS ${ARGV}
|
DEPENDS ${ARGV}
|
||||||
COMMENT "Compressing Assets"
|
COMMENT "Compressing Assets"
|
||||||
)
|
)
|
||||||
|
@ -5,12 +5,8 @@ function(tool_game name version)
|
|||||||
)
|
)
|
||||||
|
|
||||||
file(WRITE ${TEMP_DIR}/dawn/game/game.h
|
file(WRITE ${TEMP_DIR}/dawn/game/game.h
|
||||||
"#include \"games/${TARGET_GAME}/game.h\""
|
"#pragma once\n#include <games/${TARGET_GAME}/game.h>"
|
||||||
)
|
)
|
||||||
|
|
||||||
# target_sources(${PROJECT_NAME}
|
|
||||||
# PRIVATE
|
|
||||||
# ${TEMP_DIR}/dawn/game/game.h
|
|
||||||
# )
|
|
||||||
target_include_directories(${PROJECT_NAME} PUBLIC ${TEMP_DIR}/dawn)
|
target_include_directories(${PROJECT_NAME} PUBLIC ${TEMP_DIR}/dawn)
|
||||||
endfunction()
|
endfunction()
|
@ -29,7 +29,7 @@ void fileMkdirp(char *path) {
|
|||||||
while(c = path[i]) {
|
while(c = path[i]) {
|
||||||
if((c == '\\' || c == '/') && i > 0) {
|
if((c == '\\' || c == '/') && i > 0) {
|
||||||
buffer[i] = '\0';
|
buffer[i] = '\0';
|
||||||
_mkdir(buffer);
|
fileMkdir(buffer, 0755);
|
||||||
inFile = false;
|
inFile = false;
|
||||||
hasMore = false;
|
hasMore = false;
|
||||||
buffer[i] = FILE_PATH_SEP;
|
buffer[i] = FILE_PATH_SEP;
|
||||||
@ -45,7 +45,7 @@ void fileMkdirp(char *path) {
|
|||||||
|
|
||||||
if(!inFile && hasMore) {
|
if(!inFile && hasMore) {
|
||||||
buffer[i] = '\0';
|
buffer[i] = '\0';
|
||||||
_mkdir(buffer);
|
fileMkdir(buffer, 0755);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -117,5 +117,32 @@ bool fileListChildren(
|
|||||||
*count = i;
|
*count = i;
|
||||||
return true;
|
return true;
|
||||||
#else
|
#else
|
||||||
|
struct dirent *de;
|
||||||
|
DIR *dr;
|
||||||
|
int32_t i;
|
||||||
|
|
||||||
|
// Open Dir
|
||||||
|
dr = opendir(directory);
|
||||||
|
if(dr == NULL) {
|
||||||
|
printf("Could not open directory");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Iterate
|
||||||
|
i = 0;
|
||||||
|
while ((de = readdir(dr)) != NULL) {
|
||||||
|
// File or folder?
|
||||||
|
if(de->d_type != DT_REG) continue;
|
||||||
|
|
||||||
|
// Copy into child buffer
|
||||||
|
children[i] = buffer + (i * FILE_CHILD_NAME_MAX);
|
||||||
|
strcpy(children[i], de->d_name);
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
if(closedir(dr)) return false;
|
||||||
|
|
||||||
|
*count = i;
|
||||||
|
return true;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
@ -18,9 +18,13 @@
|
|||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#define getcwd _getcwd
|
#define getcwd _getcwd
|
||||||
#define FILE_PATH_SEP '\\'
|
#define FILE_PATH_SEP '\\'
|
||||||
|
#define fileMkdir(path, perms) _mkdir(path)
|
||||||
#elif defined(__GNUC__)
|
#elif defined(__GNUC__)
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#include <dirent.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
#define FILE_PATH_SEP '/'
|
#define FILE_PATH_SEP '/'
|
||||||
|
#define fileMkdir(path, perms) mkdir(path, perms)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void fileNormalizeSlashes(char *string);
|
void fileNormalizeSlashes(char *string);
|
||||||
|
@ -25,6 +25,10 @@ target_link_libraries(character_generator
|
|||||||
PUBLIC
|
PUBLIC
|
||||||
stb
|
stb
|
||||||
)
|
)
|
||||||
|
target_link_libraries(character_generator
|
||||||
|
PRIVATE
|
||||||
|
${LIBS_PLATFORM}
|
||||||
|
)
|
||||||
|
|
||||||
# Function Target
|
# Function Target
|
||||||
function(tool_vn_character target in out)
|
function(tool_vn_character target in out)
|
||||||
|
Reference in New Issue
Block a user