Skip to content

Commit 3c617db

Browse files
committed
Windows Options : Add bin to library search
This is needed for the tests to locate the DLL binaries that are currently in both `bin` and `lib` subdirectories. When all DLLs are moved to `lib`, this can be reverted.
1 parent 34b5b98 commit 3c617db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/main/options.windows

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import os
22

33
deps = os.environ.get( "CORTEX_BUILD_NAME" )
44
includes = os.path.join( deps, "include" )
5-
libs = os.path.join( deps, "lib" )
5+
libs = os.path.join( deps, "lib" ) + os.pathsep + os.path.join( deps, "bin" )
66

77
build = os.environ.get( "CORTEX_BUILD_NAME" )
88

0 commit comments

Comments
 (0)