Fixed some dependencies

This commit is contained in:
2021-11-01 14:58:30 -07:00
parent db158c2d00
commit 0695f8c523
2 changed files with 10 additions and 4 deletions

View File

@ -11,7 +11,7 @@ set(CMAKE_C_STANDARD_REQUIRED ON)
# Set some global flags
add_compile_definitions(
_CRT_SECURE_NO_WARNINGS=1
ASSET_PREFIX="../../../assets/"
ASSET_PREFIX="../assets/"
)
# Do initial set up depending on the build target type.
@ -58,6 +58,11 @@ elseif(TARGET_TYPE STREQUAL game)
shared/textures/test_texture.png textures/test_texture.png
)
# Locales
tool_copy(locale_en
locale/language/en-US.csv locale/language/en-US.csv
)
# Poker Game
if(TARGET_GAME STREQUAL poker)
add_compile_definitions(
@ -92,6 +97,7 @@ elseif(TARGET_TYPE STREQUAL game)
vn_lucy
vn_julie
vn_sammy
locale_en
)
endif()