42 lines
623 B
YAML
42 lines
623 B
YAML
|
# Remake Build Configuration
|
||
|
|
||
|
# Source folders
|
||
|
src_dirs:
|
||
|
- src
|
||
|
- lua
|
||
|
|
||
|
# Include directories
|
||
|
include_dirs:
|
||
|
- include
|
||
|
- lua
|
||
|
- C:/msys64/mingw64/include
|
||
|
|
||
|
# 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: []
|