From: Jo-Philipp Wich Date: Sun, 25 Jan 2015 16:05:46 +0000 (+0100) Subject: Make build of upgraded optional X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fprocd.git;a=commitdiff_plain;h=7e6045fe4558e442e97e4a8967f08689d53f2cc4;ds=sidebyside Make build of upgraded optional Signed-off-by: Jo-Philipp Wich --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 92907fc..5414677 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,7 +26,9 @@ IF(ZRAM_TMPFS) SET(SOURCES_ZRAM initd/zram.c) ENDIF() -add_subdirectory(upgraded) +IF(BUILD_UPGRADED) + add_subdirectory(upgraded) +ENDIF() ADD_EXECUTABLE(procd ${SOURCES}) TARGET_LINK_LIBRARIES(procd ${LIBS})