-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeLists.txt
45 lines (38 loc) · 1.19 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# 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(PhotoCasio)
include(GenerateG1A)
include(GenerateG3A)
include(Fxconv)
find_package(Gint 2.9 REQUIRED)
find_package(cPNG 1.5.30 REQUIRED)
find_package(cZlib 1.2.5 REQUIRED)
set(SOURCES
src/main.c
src/utils.c
src/draw.c
src/text.c
src/storage.c
)
set(ASSETS_cg
# imgs
assets-cg/logo.png
assets-cg/cursor.png
assets-cg/cursor_arrow.png
# fonts
assets-cg/roboto_font.png
assets-cg/anton_font.png
assets-cg/dosis_font.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 cPNG::cPNG cZlib::cZlib)
if("${FXSDK_PLATFORM_LONG}" STREQUAL fx9860G)
generate_g1a(TARGET myaddin OUTPUT "Photocasio.g3a"
NAME "PhotoCasio" ICON assets-fx/icon.png)
elseif("${FXSDK_PLATFORM_LONG}" STREQUAL fxCG50)
generate_g3a(TARGET myaddin OUTPUT "Photocasio.g3a"
NAME "PhotoCasio" ICONS assets-cg/icon-uns.png assets-cg/icon-sel.png)
endif()