diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5e0a9d8b3..f3e9a8488 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -151,6 +151,14 @@ run: '${{ github.workspace }}\.github\workflows\scripts\win\install-deps.bat x64', working-directory: proj/vs2017 }, + { + name: debug lib locations, + run: 'dir C:/vcpkg' + }, + { + name: debug lib locations, + run: 'dir C:/vcpkg/installed/x64-windows' + }, { name: build and unit test, run: '.\.github\workflows\scripts\win\scons-build.bat' diff --git a/SConstruct b/SConstruct index b94bb8807..f0a912fb6 100644 --- a/SConstruct +++ b/SConstruct @@ -194,6 +194,8 @@ elif platform == "win32": for (root, dirs, files) in os.walk('src'): project_includes.append(path.join(os.getcwd(), root)) + print([path.join(vcpkg_installed, 'lib')]) + include_paths=[path.join(vcpkg_installed, 'include')] + vcpkg_other_includes + project_includes env.Append( LINKFLAGS=['/SUBSYSTEM:WINDOWS','/ENTRY:mainCRTStartup',f'/MACHINE:X{env["bits"]}'],