geode/flash.toml

59 lines
1.3 KiB
TOML
Raw Normal View History

# Configuration file for the Flash C++ documentation generator.
# https://github.com/hjfod/flash
[project]
name = "Geode"
version = "v1.0.0-beta"
repository = "https://github.com/geode-sdk/geode"
2022-12-31 11:00:20 -05:00
tree = "https://github.com/geode-sdk/geode/tree/main"
2022-12-31 11:00:20 -05:00
[[sources]]
name = "Geode"
2023-01-21 07:17:33 -05:00
dir = "loader/include"
include = [
2023-01-21 07:17:33 -05:00
"Geode/**/*.hpp",
"Geode/**/*.h",
]
exclude = [
2023-01-21 07:17:33 -05:00
"Geode/modify/Comparer.hpp",
"Geode/platform/*.hpp",
"Geode/c++stl/*.hpp",
# All of the relevant cocos headers are included through Geode headers
2023-01-21 07:17:33 -05:00
"Geode/cocos/**/*.h"
]
2022-12-31 11:00:20 -05:00
[[sources]]
name = "Bindings"
2023-01-21 07:17:33 -05:00
dir = "build-docs/codegenned"
2022-12-31 11:00:20 -05:00
include = [
2023-01-21 07:17:33 -05:00
"Geode/binding/*.hpp"
2022-12-31 11:00:20 -05:00
]
2023-01-02 11:35:12 -05:00
# Bindings are generated at compile time
exists-online = false
2022-12-31 11:00:20 -05:00
# CMake options
[cmake]
config-args = [
"-G", "Ninja",
"-DCMAKE_CXX_COMPILER=Clang",
"-DCMAKE_C_COMPILER=Clang",
2023-01-24 11:37:59 -05:00
"-DGEODE_BUILDING_DOCS=On",
"-DGEODE_PLATFORM_NAME=Win32",
"-DGEODE_CODEGEN_CMAKE_ARGS=-DCMAKE_CXX_COMPILER=Clang;-DCMAKE_C_COMPILER=Clang",
"-DCMAKE_C_FLAGS=-m32",
"-DCMAKE_CXX_FLAGS=-m32",
"-DWIN32=On"
]
2023-01-21 07:17:33 -05:00
2022-12-31 11:00:20 -05:00
# We want to build codegen in order to get the bindings
build = true
2022-12-31 11:00:20 -05:00
build-dir = "build-docs"
build-args = [
"--target", "CodegenRun"
]
2022-12-31 11:00:20 -05:00
# The file we use to get all the include paths and such
infer-args-from = "loader/src/main.cpp"