2025-04-16 19:33:24 +00:00
|
|
|
# Remake Build Configuration
|
|
|
|
|
2025-04-16 22:04:33 +00:00
|
|
|
# Source folders
|
2025-04-16 19:33:24 +00:00
|
|
|
src_dirs:
|
|
|
|
- src
|
|
|
|
- lua
|
|
|
|
|
2025-04-16 22:04:33 +00:00
|
|
|
# Include directories
|
2025-04-16 19:33:24 +00:00
|
|
|
include_dirs:
|
|
|
|
- include
|
|
|
|
- lua
|
|
|
|
- C:/msys64/mingw64/include
|
|
|
|
|
2025-04-16 22:04:33 +00:00
|
|
|
# Library search paths
|
2025-04-16 19:33:24 +00:00
|
|
|
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: []
|