How to represent tips for cmake after installation? #25550
playgithub
started this conversation in
General
Replies: 2 comments 2 replies
-
vcpkg will print whatever is located in vcpkg/ports/zlib/portfile.cmake Line 46 in 4826ede Lines 1 to 4 in 4826ede |
Beta Was this translation helpful? Give feedback.
2 replies
-
The usage will also be printed again for installed ports when you call But be warned that there is also heuristical output which can be wrong (#20190). |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
e.g.
vcpkg install WTL ... wtl is header-only and can be used from CMake via: find_path(WTL_INCLUDE_DIRS "atlapp.h") target_include_directories(main PRIVATE ${WTL_INCLUDE_DIRS})
The tips after installation are useful, anyway to represent it?
Beta Was this translation helpful? Give feedback.
All reactions