recursive search is not that easy

This commit is contained in:
2025-03-17 12:47:21 -05:00
parent e34f72e324
commit ae25ee11ed

View File

@@ -55,7 +55,7 @@
buildPhase = '' buildPhase = ''
g++ \ g++ \
modules/TestMenu/src/**.cpp src/App.cpp \ modules/TestMenu/src/*.cpp src/App.cpp \
-fpic -shared \ -fpic -shared \
-I src \ -I src \
-Wall \ -Wall \
@@ -81,7 +81,7 @@
buildPhase = '' buildPhase = ''
g++ \ g++ \
modules/Print/src/**.cpp src/App.cpp \ modules/Print/src/*.cpp src/App.cpp \
-fpic -shared \ -fpic -shared \
-I src -I include \ -I src -I include \
-Wall \ -Wall \
@@ -112,7 +112,7 @@
buildPhase = '' buildPhase = ''
g++ \ g++ \
modules/Window/src/**.cpp src/App.cpp \ modules/Window/src/*.cpp modules/Window/src/WindowImpl/*.cpp src/App.cpp \
-fpic -shared \ -fpic -shared \
-I src -I include \ -I src -I include \
-lGL -lglfw -lGLEW \ -lGL -lglfw -lGLEW \
@@ -141,7 +141,7 @@
buildPhase = '' buildPhase = ''
g++ \ g++ \
modules/MainGUI/src/**.cpp src/App.cpp \ modules/MainGUI/src/*.cpp src/App.cpp \
-fpic -shared \ -fpic -shared \
-I src -I include \ -I src -I include \
-Wall \ -Wall \