# 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(HexEdit) include(GenerateG3A) include(Fxconv) find_package(Gint 2.8 REQUIRED) find_package(JustUI 1.0 REQUIRED) set(SOURCES src/main.c ) set(ASSETS ) fxconv_declare_assets(${ASSETS} WITH_METADATA) add_executable(hexedit ${SOURCES} ${ASSETS}) target_compile_options(hexedit PRIVATE -Wall -Wextra -Os) target_link_libraries(hexedit JustUI::JustUI Gint::Gint) generate_g3a(TARGET hexedit OUTPUT "HexEdit.g3a" NAME "HexEdit" ICONS assets-cg/icon-uns.png assets-cg/icon-sel.png)