-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcpp.toml
More file actions
39 lines (32 loc) · 789 Bytes
/
Copy pathmcpp.toml
File metadata and controls
39 lines (32 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "mcpp-kaki"
version = "1.0.0"
description = "A xianxia Metroidvania action game (Godot GDExtension)"
license = "MIT"
repo = "https://github.com/farna/mcpp-kaki"
[language]
standard = "c++23"
modules = true
import_std = false
[build]
cflags = [
"-DLINUX_ENABLED",
"-DUNIX_ENABLED",
"-DDEBUG_ENABLED",
]
include_dirs = [
"src",
]
[modules]
sources = [
"src/**/*.cppm",
"src/**/*.cpp",
]
exports = ["mcpp_kaki.utils", "mcpp_kaki.combat", "mcpp_kaki.inventory", "mcpp_kaki.cultivation", "mcpp_kaki.nodes", "mcpp_kaki.core"]
[targets.mcpp-kaki]
kind = "shared"
soname = "libmcpp-kaki.linux.template_debug.x86_64.so"
[dependencies.compat]
godot-cpp = "10.0.0-rc1"
[dependencies.godotengine]
godot-cpp-m = "10.0.0-rc1"