Upload files to ''

This commit is contained in:
Gladosse 2022-01-03 20:12:41 +01:00
parent d6c4117177
commit e96c8ab749
5 changed files with 52 additions and 0 deletions

52
CMakeLists.txt Normal file
View File

@ -0,0 +1,52 @@
# 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(GenerateG3A)
include(Fxconv)
find_package(Gint 2.1 REQUIRED)
set(SOURCES
src/main.c
src/board.c
src/timer.c
# ...
)
# Shared assets, fx-9860G-only assets and fx-CG-50-only assets
set(ASSETS
# ...
)
set(ASSETS_fx
assets-fx/example.png
# ...
)
set(ASSETS_cg
assets-cg/example.png
assets-cg/desert_cell.png
assets-cg/cursor.png
assets-cg/flag.png
assets-cg/nums.png
assets-cg/bomb.png
assets-cg/bugdenial.png
assets-cg/red_bomb.png
assets-cg/cross_bomb.png
assets-cg/digits.png
# ...
)
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 "MyAddin.g1a"
NAME "MyAddin" ICON assets-fx/icon.png)
elseif("${FXSDK_PLATFORM_LONG}" STREQUAL fxCG50)
generate_g3a(TARGET myaddin OUTPUT "Minesweeper.g3a"
NAME "Minesweeper" ICONS assets-cg/icon-uns.png assets-cg/icon-sel.png)
endif()

BIN
Minesweeper.g3a Normal file

Binary file not shown.

BIN
bomb.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
bugdenial.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 703 B

BIN
cursor.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 860 B