Skip to content

Commit 92bee1a

Browse files
committed
SCons : Add bin to LIBPATH for Windows
The `9.0.0` dependencies moved DLL files to the `bin` directory, so that directory needs to be added to `PATH` via the `LIBPATH` setting.
1 parent 43e28fe commit 92bee1a

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)