mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 22:09:00 +08:00
68fabb939e
Fixes #1610
8 lines
263 B
CMake
8 lines
263 B
CMake
find_library(TACOPIE tacopie)
|
|
find_path(TACOPIE_H tacopie/tacopie)
|
|
|
|
message(STATUS "TACOPIE_H: ${TACOPIE_H}")
|
|
|
|
add_library(tacopie INTERFACE)
|
|
target_link_libraries(tacopie INTERFACE "${TACOPIE}")
|
|
target_include_directories(tacopie INTERFACE "${TACOPIE_H}") |