aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/detours/usage
blob: 00f978fb68a4686d1dd75bacbc1a6ea5c06bc36b (plain)
1
2
3
4
5
6
7
detours can be used from CMake via:

    find_path(DETOURS_INCLUDE_DIRS "detours/detours.h")
    find_library(DETOURS_LIBRARY detours REQUIRED)

    target_include_directories(main PRIVATE ${DETOURS_INCLUDE_DIRS})
    target_link_libraries(main PRIVATE ${DETOURS_LIBRARY})