summaryrefslogtreecommitdiff
path: root/image/backends
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2020-06-22 21:50:55 -0500
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2020-06-22 21:50:55 -0500
commit55b3c85949c8a3bd7486a8a1b0a63b7bfbfde973 (patch)
tree07a204f531b057b54d8538b3e51e4e04bafbf6e0 /image/backends
parentc7a38e3e9ab868526b2953d3094c4be8da5ed97c (diff)
downloadhorizon-55b3c85949c8a3bd7486a8a1b0a63b7bfbfde973.tar.gz
horizon-55b3c85949c8a3bd7486a8a1b0a63b7bfbfde973.tar.bz2
horizon-55b3c85949c8a3bd7486a8a1b0a63b7bfbfde973.tar.xz
horizon-55b3c85949c8a3bd7486a8a1b0a63b7bfbfde973.zip
CMake: Add BUILD_ISO option to toggle ISO generation support
Diffstat (limited to 'image/backends')
-rw-r--r--image/backends/CMakeLists.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/image/backends/CMakeLists.txt b/image/backends/CMakeLists.txt
index 325fddf..790895e 100644
--- a/image/backends/CMakeLists.txt
+++ b/image/backends/CMakeLists.txt
@@ -1,6 +1,5 @@
set(BACKEND_SRCS
basic.cc
- iso.cc
)
set(BACKEND_LIBS "")
@@ -12,6 +11,10 @@ if(LibArchive_FOUND)
list(APPEND BACKEND_LIBS ${LibArchive_LIBRARIES})
endif()
+if(BUILD_ISO)
+ list(APPEND BACKEND_SRCS iso.cc)
+endif(BUILD_ISO)
+
add_library(hi-backends ${BACKEND_SRCS})
target_link_libraries(hi-backends ${BACKEND_LIBS})
install(TARGETS hi-backends DESTINATION lib)