uSTL_2.3_addin_example/CMakeLists.txt

33 lines
930 B
CMake

# 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(GenerateG3A)
include(Fxconv)
find_package(Gint 2.1 REQUIRED)
set(SOURCES
src/main.cc
# ...
)
set(ASSETS_cg
assets-cg/example.png
# ...
)
fxconv_declare_assets(${ASSETS_cg} WITH_METADATA)
add_executable(myaddin ${SOURCES} ${ASSETS_${FXSDK_PLATFORM}})
target_compile_options(myaddin PRIVATE -Wall -Wextra -Os -std=c++11 -c)
#target_compile_options(myaddin PRIVATE -Os -mb -m4a-nofpu -mhitachi -std=c++14 -fno-strict-aliasing -ffreestanding -fexceptions)
target_link_libraries(myaddin Gint::Gint -lustl -lc)
target_link_options(myaddin PRIVATE -Wl,-Map=map)
if("${FXSDK_PLATFORM_LONG}" STREQUAL fxCG50)
generate_g3a(TARGET myaddin OUTPUT "TestuSTL.g3a"
NAME "uSTL Test" ICONS assets-cg/icon-uns.png assets-cg/icon-sel.png)
endif()