Skip to content

Commit

Permalink
SCons : Add bin to LIBPATH for Windows
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ericmehl committed Nov 12, 2024
1 parent 43e28fe commit 92bee1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main/options.windows
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import os

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

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

Expand Down

0 comments on commit 92bee1a

Please sign in to comment.