# 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(MyAddin) include(GenerateG1A) include(Fxconv) find_package(Gint 2.1 REQUIRED) set(SOURCES src/core.c src/init.c src/tools.c src/main.c # ... ) # Shared assets, fx-9860G-only assets and fx-CG-50-only assets set(ASSETS # ... ) set(ASSETS_fx assets-fx/maps/map1.png assets-fx/title.png assets-fx/game_over.png assets-fx/you_won.png assets-fx/menu/play.png assets-fx/menu/play_s.png assets-fx/menu/quit.png assets-fx/menu/quit_s.png assets-fx/timer/3.png assets-fx/timer/2.png assets-fx/timer/1.png assets-fx/score_bar.png assets-fx/milifont.png # ... ) fxconv_declare_assets(${ASSETS} ${ASSETS_fx} 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 "METROSI4.G1A" NAME "Metro Siberia 4" ICON assets-fx/icon.png) endif()