30 lines
735 B
TOML
30 lines
735 B
TOML
[system]
|
|
ar_timer = 60
|
|
actor_memory = 0
|
|
net_service = 0.1
|
|
reply_timeout = 60
|
|
actor_max = "10_000"
|
|
stack_max = 0
|
|
[actors]
|
|
[actors.prosperon/sdl_video]
|
|
main = true
|
|
[actors.prosperon/prosperon]
|
|
main = true
|
|
[actors.prosperon]
|
|
main = true
|
|
[actors.accio]
|
|
main = true
|
|
|
|
[compilation]
|
|
CFLAGS = "-Wno-incompatible-pointer-types -Wno-missing-braces -Wno-strict-prototypes -Wno-unused-function -Wno-int-conversion"
|
|
LDFLAGS = "-lstdc++ -lm"
|
|
|
|
[compilation.macOS]
|
|
CFLAGS = "-x objective-c"
|
|
LDFLAGS = "-framework CoreFoundation -framework CFNetwork"
|
|
|
|
[compilation.playdate]
|
|
CFLAGS = "-DMINIZ_NO_TIME -DTARGET_EXTENSION -DTARGET_PLAYDATE -I$PLAYDATE_SDK_PATH/C_API"
|
|
|
|
[compilation.windows]
|
|
LDFLAGS = "-lbcrypt -lwinhttp -static-libgcc -static-libstdc++" |