mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-12-16 09:08:59 +00:00
45 lines
1.7 KiB
Diff
45 lines
1.7 KiB
Diff
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -68,6 +68,7 @@ include(CMakeDependentOption)
|
|
include(cmake/scripts/common/DependencyOptions.cmake)
|
|
|
|
# general
|
|
+option(HEADERS_ONLY "Skip building" OFF)
|
|
option(VERBOSE "Enable verbose output?" OFF)
|
|
option(ENABLE_CLANGTIDY "Enable clang-tidy support?" OFF)
|
|
option(ENABLE_CPPCHECK "Enable cppcheck support?" OFF)
|
|
@@ -144,6 +145,7 @@ core_find_git_rev(APP_SCMID FULL)
|
|
set(AUDIO_BACKENDS_LIST "" CACHE STRING "Available audio backends")
|
|
set(GL_INTERFACES_LIST "" CACHE STRING "Available GL interfaces")
|
|
|
|
+if(NOT HEADERS_ONLY)
|
|
# Dynamically loaded libraries built with the project
|
|
add_custom_target(${APP_NAME_LC}-libraries)
|
|
set(LIBRARY_FILES "" CACHE STRING "" FORCE)
|
|
@@ -587,6 +589,7 @@ endif()
|
|
if(FFMPEG_CREATE_SHARED_LIBRARY)
|
|
set(CMAKE_CXX_CREATE_SHARED_LIBRARY "${FFMPEG_CREATE_SHARED_LIBRARY}")
|
|
endif()
|
|
+endif()
|
|
|
|
# Platform specific additional extra targets
|
|
if(EXISTS ${CMAKE_SOURCE_DIR}/cmake/scripts/${CORE_SYSTEM_NAME}/ExtraTargets.cmake)
|
|
--- a/cmake/scripts/linux/Install.cmake
|
|
+++ b/cmake/scripts/linux/Install.cmake
|
|
@@ -45,6 +45,7 @@ configure_file(${CMAKE_SOURCE_DIR}/tools
|
|
configure_file(${CMAKE_SOURCE_DIR}/tools/Linux/kodi.metainfo.xml.in
|
|
${CORE_BUILD_DIR}/${APP_PACKAGE}.metainfo.xml @ONLY)
|
|
|
|
+if(NOT HEADERS_ONLY)
|
|
# Install app
|
|
install(TARGETS ${APP_NAME_LC}
|
|
DESTINATION ${libdir}/${APP_NAME_LC}
|
|
@@ -164,6 +165,7 @@ if(INTERNAL_TEXTUREPACKER_INSTALLABLE)
|
|
RENAME "${APP_NAME_LC}-TexturePacker"
|
|
COMPONENT kodi-tools-texturepacker)
|
|
endif()
|
|
+endif()
|
|
|
|
# Install kodi-addon-dev headers
|
|
include(${CMAKE_SOURCE_DIR}/xbmc/addons/AddonBindings.cmake)
|