CalcCity/CMakeLists.txt

48 lines
1.1 KiB
CMake
Raw Normal View History

2021-10-10 15:08:56 +02:00
# Configure with [fxsdk build-fx] or [fxsdk build-cg], which provide the
# toolchain file and module path of the fxSDK
cmake_minimum_required(VERSION 3.15)
project(CalcCity)
include(GenerateG1A)
include(GenerateG3A)
include(Fxconv)
find_package(Gint 2.1 REQUIRED)
set(SOURCES
src/main.c
2021-10-31 15:12:30 +01:00
src/core.c
src/display.c
src/menus.c
src/calccity.c
2021-10-10 15:08:56 +02:00
)
2021-10-23 18:51:28 +02:00
set(ASSETS)
2021-10-10 15:08:56 +02:00
set(ASSETS_fx
assets-fx/calccity.png
2021-10-23 18:51:28 +02:00
assets-fx/large_tileset.png
2021-11-06 20:39:36 +01:00
assets-fx/mini_tileset.png
2021-10-23 18:51:28 +02:00
assets-fx/large_water.png
assets-fx/title.png
assets-fx/fn_keys.png
2021-11-05 16:37:09 +01:00
assets-fx/fn_1.png
assets-fx/fn_2.png
2021-10-10 15:08:56 +02:00
)
2021-10-23 18:51:28 +02:00
set(ASSETS_cg)
2021-10-10 15:08:56 +02:00
fxconv_declare_assets(${ASSETS} ${ASSETS_fx} ${ASSETS_cg} WITH_METADATA)
add_executable(myaddin ${SOURCES} ${ASSETS} ${ASSETS_${FXSDK_PLATFORM}})
target_compile_options(myaddin PRIVATE -Wall -Wextra -Os)
target_link_libraries(myaddin Gint::Gint)
if("${FXSDK_PLATFORM_LONG}" STREQUAL fx9860G)
generate_g1a(TARGET myaddin OUTPUT "CalcCity.g1a"
NAME "CalcCity" ICON assets-fx/icon.png)
elseif("${FXSDK_PLATFORM_LONG}" STREQUAL fxCG50)
2021-10-23 18:51:28 +02:00
generate_g3a(TARGET myaddin OUTPUT "CalcCity.g3a"
NAME "CalcCity" ICONS assets-cg/icon-uns.png assets-cg/icon-sel.png)
2021-10-10 15:08:56 +02:00
endif()