From 33ce8e8a75a92f5fdeabe4730e63e1fc787a62ea Mon Sep 17 00:00:00 2001 From: Christoffer Lerno Date: Wed, 21 Aug 2024 09:54:01 +0200 Subject: [PATCH] Add path test windows. --- .github/workflows/main.yml | 2 +- resources/testproject/project.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d4dc837c0..a865dfa9b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -36,7 +36,7 @@ jobs: - name: Compile and run some examples run: | cd resources - ..\build\${{ matrix.build_type }}\c3c.exe compile-run --print-linking examples\hello_world_many.c3 + ..\build\${{ matrix.build_type }}\c3c.exe compile-run -L C:\ --print-linking examples\hello_world_many.c3 ..\build\${{ matrix.build_type }}\c3c.exe compile-run --print-linking examples\time.c3 ..\build\${{ matrix.build_type }}\c3c.exe compile-run --print-linking examples\fannkuch-redux.c3 ..\build\${{ matrix.build_type }}\c3c.exe compile-run examples\contextfree\boolerr.c3 diff --git a/resources/testproject/project.json b/resources/testproject/project.json index d18f25da5..6b75e902b 100644 --- a/resources/testproject/project.json +++ b/resources/testproject/project.json @@ -28,6 +28,7 @@ }, "hello_world_win32": { "type": "executable", + "c-include-dirs": [ "C:\\"], "c-sources-override": [ ] },