# Remake Build Configuration

# Source folders to recursively find .c/.cpp files
src_dirs:
  - src
  - lua

# Include directories (-I)
include_dirs:
  - include
  - lua
  - C:/msys64/mingw64/include

# Library search paths (-L)
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: []