# 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/buffer.c src/heditor.c src/hlist.c src/main.c src/source.c src/source-lazy-file.c src/source-loaded-file.c src/source-memory.c src/util.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 "Hex Editor" ICONS assets-cg/icon-uns.png assets-cg/icon-sel.png)