diff options
author | Andrea Pappacoda <[email protected]> | 2021-10-10 21:28:28 +0200 |
---|---|---|
committer | Andrea Pappacoda <[email protected]> | 2021-10-10 21:30:09 +0200 |
commit | b29e471ea5d31e9384b5f77dd2af9e7ee215d92b (patch) | |
tree | 09112854e3ef30204a920bd955e3792b4dc05ff3 /cmake | |
parent | cecd204a506a723950932629bff2dff35f0ebe84 (diff) | |
download | xbyak-b29e471ea5d31e9384b5f77dd2af9e7ee215d92b.tar.gz xbyak-b29e471ea5d31e9384b5f77dd2af9e7ee215d92b.zip |
build(meson): fix CMake Config file include dir
I previously set the path to ${CMAKE_CURRENT_LIST_FILE}/include,
that was wrong and ended up pointing to a nonexistent directory.
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/meson-config.cmake.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/meson-config.cmake.in b/cmake/meson-config.cmake.in index 9aeef78..3fdb3e7 100644 --- a/cmake/meson-config.cmake.in +++ b/cmake/meson-config.cmake.in @@ -3,6 +3,6 @@ if(NOT TARGET @TARGET_NAME@) add_library(@TARGET_NAME@ INTERFACE IMPORTED) set_target_properties(@TARGET_NAME@ PROPERTIES - INTERFACE_INCLUDE_DIRECTORIES "${CMAKE_CURRENT_LIST_FILE}/include" + INTERFACE_INCLUDE_DIRECTORIES "@ABSOLUTE_INCLUDE_DIR@" ) endif() |