add all the craaaap
This commit is contained in:
commit
5c49db36bf
11 changed files with 76 additions and 0 deletions
14
.gitignore
vendored
Normal file
14
.gitignore
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
# Build files
|
||||
/build-fx
|
||||
/build-cg
|
||||
/build-cg-push
|
||||
/*.g1a
|
||||
/*.g3a
|
||||
|
||||
# Python bytecode
|
||||
__pycache__/
|
||||
|
||||
# Common IDE files
|
||||
*.sublime-project
|
||||
*.sublime-workspace
|
||||
.vscode
|
41
CMakeLists.txt
Normal file
41
CMakeLists.txt
Normal file
|
@ -0,0 +1,41 @@
|
|||
# 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(cxxbp)
|
||||
|
||||
include(GenerateG1A)
|
||||
include(GenerateG3A)
|
||||
include(Fxconv)
|
||||
find_package(Gint 2.9 REQUIRED)
|
||||
|
||||
set(SOURCES
|
||||
src/main.cpp
|
||||
# ...
|
||||
)
|
||||
# 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
|
||||
# ...
|
||||
)
|
||||
|
||||
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 "cxxbp.g1a"
|
||||
NAME "cxxbp" ICON assets-fx/icon.png)
|
||||
elseif("${FXSDK_PLATFORM_LONG}" STREQUAL fxCG50)
|
||||
generate_g3a(TARGET myaddin OUTPUT "cxxbp.g3a"
|
||||
NAME "cxxbp" ICONS assets-cg/icon-uns.png assets-cg/icon-sel.png)
|
||||
endif()
|
BIN
assets-cg/example.png
Normal file
BIN
assets-cg/example.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.7 KiB |
3
assets-cg/fxconv-metadata.txt
Normal file
3
assets-cg/fxconv-metadata.txt
Normal file
|
@ -0,0 +1,3 @@
|
|||
example.png:
|
||||
type: bopti-image
|
||||
name: img_example
|
BIN
assets-cg/icon-cg.xcf
Normal file
BIN
assets-cg/icon-cg.xcf
Normal file
Binary file not shown.
BIN
assets-cg/icon-sel.png
Normal file
BIN
assets-cg/icon-sel.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.5 KiB |
BIN
assets-cg/icon-uns.png
Normal file
BIN
assets-cg/icon-uns.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.7 KiB |
BIN
assets-fx/example.png
Normal file
BIN
assets-fx/example.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.5 KiB |
3
assets-fx/fxconv-metadata.txt
Normal file
3
assets-fx/fxconv-metadata.txt
Normal file
|
@ -0,0 +1,3 @@
|
|||
example.png:
|
||||
type: bopti-image
|
||||
name: img_example
|
BIN
assets-fx/icon.png
Normal file
BIN
assets-fx/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.3 KiB |
15
src/main.cpp
Normal file
15
src/main.cpp
Normal file
|
@ -0,0 +1,15 @@
|
|||
extern "C" {
|
||||
#include <gint/display.h>
|
||||
#include <gint/keyboard.h>
|
||||
}
|
||||
using namespace std;
|
||||
|
||||
int main(void)
|
||||
{
|
||||
dclear(C_WHITE);
|
||||
dtext(1, 1, C_BLACK, "Sample fxSDK add-in.");
|
||||
dupdate();
|
||||
|
||||
getkey();
|
||||
return 1;
|
||||
}
|
Reference in a new issue