We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Host Environment
To Reproduce Steps to reproduce the behavior: ./vcpkg.exe install --triplet=x64-windows-static cjson
./vcpkg.exe install --triplet=x64-windows-static cjson
After you install, you cannot use the CMake. The reason is that in line 45 there is: set(_IMPORT_PREFIX "${_IMPORT_PREFIX}")
set(_IMPORT_PREFIX "${_IMPORT_PREFIX}")
This is a regression. It means nothing. Any project that users cjson will fail in line 68 (won't be able to find the cjon.lib).
Should be: set(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_DIR}/../..")
set(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_DIR}/../..")
As it used to be before
The text was updated successfully, but these errors were encountered:
JonLiu1993
Successfully merging a pull request may close this issue.
Host Environment
To Reproduce
Steps to reproduce the behavior:
./vcpkg.exe install --triplet=x64-windows-static cjson
After you install, you cannot use the CMake.
The reason is that in line 45 there is:
set(_IMPORT_PREFIX "${_IMPORT_PREFIX}")
This is a regression. It means nothing. Any project that users cjson will fail in line 68 (won't be able to find the cjon.lib).
Should be:
set(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_DIR}/../..")
As it used to be before
The text was updated successfully, but these errors were encountered: