From ae25ee11eda7e4955c8ddd8b745e3eb73a8f25b7 Mon Sep 17 00:00:00 2001 From: Nathan Date: Mon, 17 Mar 2025 12:47:21 -0500 Subject: [PATCH] recursive search is not that easy --- flake.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index 8e8f83d..4fe00b1 100755 --- a/flake.nix +++ b/flake.nix @@ -55,7 +55,7 @@ buildPhase = '' g++ \ - modules/TestMenu/src/**.cpp src/App.cpp \ + modules/TestMenu/src/*.cpp src/App.cpp \ -fpic -shared \ -I src \ -Wall \ @@ -81,7 +81,7 @@ buildPhase = '' g++ \ - modules/Print/src/**.cpp src/App.cpp \ + modules/Print/src/*.cpp src/App.cpp \ -fpic -shared \ -I src -I include \ -Wall \ @@ -112,7 +112,7 @@ buildPhase = '' g++ \ - modules/Window/src/**.cpp src/App.cpp \ + modules/Window/src/*.cpp modules/Window/src/WindowImpl/*.cpp src/App.cpp \ -fpic -shared \ -I src -I include \ -lGL -lglfw -lGLEW \ @@ -141,7 +141,7 @@ buildPhase = '' g++ \ - modules/MainGUI/src/**.cpp src/App.cpp \ + modules/MainGUI/src/*.cpp src/App.cpp \ -fpic -shared \ -I src -I include \ -Wall \