mirror of
https://github.com/herumi/xbyak
synced 2024-11-20 16:06:14 -07:00
b29e471ea5
I previously set the path to ${CMAKE_CURRENT_LIST_FILE}/include, that was wrong and ended up pointing to a nonexistent directory.
8 lines
208 B
CMake
8 lines
208 B
CMake
@PACKAGE_INIT@
|
|
|
|
if(NOT TARGET @TARGET_NAME@)
|
|
add_library(@TARGET_NAME@ INTERFACE IMPORTED)
|
|
set_target_properties(@TARGET_NAME@ PROPERTIES
|
|
INTERFACE_INCLUDE_DIRECTORIES "@ABSOLUTE_INCLUDE_DIR@"
|
|
)
|
|
endif()
|