mirror of
https://github.com/clementine-player/Clementine
synced 2024-12-18 12:28:31 +01:00
Disable libxrme install targets on Mac.
This commit is contained in:
parent
6cc12ed964
commit
d357a1cb6e
22
3rdparty/libxrme/CMakeLists.txt
vendored
22
3rdparty/libxrme/CMakeLists.txt
vendored
@ -32,20 +32,22 @@ target_link_libraries(xrme
|
||||
|
||||
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/..)
|
||||
|
||||
# Install library
|
||||
install(TARGETS xrme
|
||||
if(NOT APPLE)
|
||||
# Install library
|
||||
install(TARGETS xrme
|
||||
RUNTIME DESTINATION bin
|
||||
LIBRARY DESTINATION lib
|
||||
ARCHIVE DESTINATION lib
|
||||
)
|
||||
)
|
||||
|
||||
# Install public headers
|
||||
install(FILES ${PUBLIC_HEADERS}
|
||||
# Install public headers
|
||||
install(FILES ${PUBLIC_HEADERS}
|
||||
DESTINATION include/xrme/
|
||||
)
|
||||
)
|
||||
|
||||
# Also install public headers into the cmake binary dir so packages can use
|
||||
# libxrme in their source tree by doing include_directories(${CMAKE_BINARY_DIR})
|
||||
foreach(header ${PUBLIC_HEADERS})
|
||||
# Also install public headers into the cmake binary dir so packages can use
|
||||
# libxrme in their source tree by doing include_directories(${CMAKE_BINARY_DIR})
|
||||
foreach(header ${PUBLIC_HEADERS})
|
||||
configure_file(${header} ${CMAKE_BINARY_DIR}/xrme/${header} COPYONLY)
|
||||
endforeach(header)
|
||||
endforeach(header)
|
||||
endif(NOT APPLE)
|
||||
|
Loading…
Reference in New Issue
Block a user