mirror of
https://github.com/herumi/xbyak
synced 2024-11-21 16:09:11 -07:00
fix conflict
This commit is contained in:
commit
47cf85fdba
2 changed files with 2 additions and 1 deletions
|
@ -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()
|
||||
|
|
|
@ -35,6 +35,7 @@ if meson.version().version_compare('>=0.50.0')
|
|||
|
||||
cmake_conf = configuration_data()
|
||||
cmake_conf.set('TARGET_NAME', meson.project_name() + '::' + meson.project_name())
|
||||
cmake_conf.set('ABSOLUTE_INCLUDE_DIR', get_option('prefix')/get_option('includedir'))
|
||||
|
||||
cmake.configure_package_config_file(
|
||||
name: meson.project_name(),
|
||||
|
|
Loading…
Reference in a new issue