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
use libsdptransform with cmake FetchContent as below:
FetchContent_Declare( sdptransform GIT_REPOSITORY https://github.com/loveyacper/libsdptransform.git GIT_TAG master ) FetchContent_MakeAvailable(sdptransform)
cmake version is 3.18.2, gcc version is 8.4.1.
Compiler generates errors like this:
fatal error: sdptransform.hpp: No such file or directory #include "sdptransform.hpp"
To fix it, we should add one line in CMakeLists.txt:
target_include_directories(sdptransform PUBLIC ${PROJECT_SOURCE_DIR}/include)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
use libsdptransform with cmake FetchContent as below:
cmake version is 3.18.2, gcc version is 8.4.1.
Compiler generates errors like this:
To fix it, we should add one line in CMakeLists.txt:
The text was updated successfully, but these errors were encountered: