Remake/remake.yaml

42 lines
623 B
YAML
Raw Normal View History

# Remake Build Configuration
2025-04-16 22:04:33 +00:00
# Source folders
src_dirs:
- src
- lua
2025-04-16 22:04:33 +00:00
# Include directories
include_dirs:
- include
- lua
- C:/msys64/mingw64/include
2025-04-16 22:04:33 +00:00
# Library search paths
lib_dirs:
- C:/msys64/mingw64/lib
- C:/libs
# Output paths
build_dir: build
target: build/app.exe
log_file: remake/build.log
cache_file: remake/.remake_cache.json
# C compiler and flags
cc: gcc
cflags:
- -std=c99
- -Wall
# C++ compiler and flags
cxx: g++
cxxflags:
- -std=c++20
- -Wall
# Auto-detect these libraries (e.g. glfw3 → -lglfw3)
auto_libs: []
# Auto-detect headers from these include folders
auto_includes: []