X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fuci.git;a=blobdiff_plain;f=lua%2FCMakeLists.txt;h=a532fc1e546a9b7bd3a03225420338297f7be9a1;hp=b3e2ca7c3effe87a35797306fc321a969e9d8808;hb=bb0e4cf86270740be7692a926ab92d2b635a26f8;hpb=ee48b7a841615226d9aea9b51dbc619b051461d0 diff --git a/lua/CMakeLists.txt b/lua/CMakeLists.txt index b3e2ca7..a532fc1 100644 --- a/lua/CMakeLists.txt +++ b/lua/CMakeLists.txt @@ -19,18 +19,23 @@ IF(NOT LUAPATH) OUTPUT_STRIP_TRAILING_WHITESPACE ) - IF(NOT ${LUA_CHECK_RES} EQUAL 0 OR ${LUAPATH} EQUAL "") - MESSAGE(SEND_ERROR "Lua was not found on your system") + IF(BUILD_LUA) + IF(NOT ${LUA_CHECK_RES} EQUAL 0 OR ${LUAPATH} EQUAL "") + MESSAGE(SEND_ERROR "Lua was not found on your system") + ENDIF() ENDIF() ENDIF() -ADD_LIBRARY(uci_lua MODULE uci.c) -SET_TARGET_PROPERTIES(uci_lua PROPERTIES - OUTPUT_NAME uci - PREFIX "" -) -TARGET_LINK_LIBRARIES(uci_lua uci dl) +IF(BUILD_LUA) + ADD_LIBRARY(uci_lua MODULE uci.c) + SET_TARGET_PROPERTIES(uci_lua PROPERTIES + OUTPUT_NAME uci + PREFIX "" + ) + TARGET_LINK_LIBRARIES(uci_lua uci dl) + + INSTALL(TARGETS uci_lua + LIBRARY DESTINATION ${LUAPATH} + ) +ENDIF() -INSTALL(TARGETS uci_lua - LIBRARY DESTINATION ${LUAPATH} -)