some changes for speed and usability with the fast version

This commit is contained in:
yggdrasil75
2026-02-21 11:05:11 -05:00
parent 2768b6849e
commit dc36b93e4f
2 changed files with 27 additions and 15 deletions

View File

@@ -7,7 +7,7 @@ STB_DIR := ./stb
# Compiler and flags
CXX := g++
BASE_CXXFLAGS = -std=c++23 -O3 -I$(IMGUI_DIR) -I$(IMGUI_DIR)/backends -I$(STB_DIR)
BASE_CXXFLAGS = -std=c++23 -O3 -fopenmp -march=native -I$(IMGUI_DIR) -I$(IMGUI_DIR)/backends -I$(STB_DIR)
BASE_CXXFLAGS += `pkg-config --cflags glfw3`
CFLAGS = $(BASE_CXXFLAGS)
LDFLAGS := -L./imgui -limgui -lGL