38 lines
511 B
YAML
38 lines
511 B
YAML
# Remake Build Configuration
|
|
|
|
# Source folder
|
|
src_dirs:
|
|
- src
|
|
|
|
# Include directories
|
|
include_dirs:
|
|
- include
|
|
|
|
# Library paths
|
|
lib_dirs: []
|
|
|
|
# Output paths
|
|
build_dir: build
|
|
target: build/app.exe
|
|
log_file: remake/build.log
|
|
|
|
|
|
# C compiler and flags
|
|
cc: gcc
|
|
cflags:
|
|
- -std=c99
|
|
- -Wall
|
|
|
|
# C++ compiler and flags
|
|
cxx: g++
|
|
cxxflags:
|
|
- -std=c++20
|
|
- -Wall
|
|
- -O3
|
|
|
|
# Auto-detect these libraries (e.g. "glfw3" or "opengl32" )
|
|
auto_libs: []
|
|
|
|
# Auto-detect headers from these include folders
|
|
auto_includes: []
|