diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-12-20 17:13:51 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-12-20 17:49:29 +0100 |
commit | f1829e8b2f4b6de3e3ff80a42efce0d47d66f2cc (patch) | |
tree | 3117f75627dda8ae4af2dfa74fe9b5904b10d4c0 /3rdparty/CMakeLists.txt | |
parent | 0f6b4cc536e341ffa5f45e06844d52cc1a7af425 (diff) |
Remove embedded LUA 3rdparty
Change-Id: Ied46d7f7784b478c75758d15f018a7ff6d3533c2
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to '3rdparty/CMakeLists.txt')
-rw-r--r-- | 3rdparty/CMakeLists.txt | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/3rdparty/CMakeLists.txt b/3rdparty/CMakeLists.txt deleted file mode 100644 index 268b387..0000000 --- a/3rdparty/CMakeLists.txt +++ /dev/null @@ -1,67 +0,0 @@ -########################################################################### -# Copyright 2015, 2016, 2017 IoT.bzh -# -# author: Romain Forlot <romain@iot.bzh> -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -########################################################################### - -set(LUA external-lua) -set(LUA_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/lua) -include(${CMAKE_ROOT}/Modules/ExternalProject.cmake) -ExternalProject_Add(${LUA} - URL https://www.lua.org/ftp/lua-5.3.4.tar.gz - SOURCE_DIR ${LUA_SOURCE_DIR} - PATCH_COMMAND cd ${CMAKE_CURRENT_SOURCE_DIR} && patch -p1 < ${CMAKE_CURRENT_SOURCE_DIR}/crosscompile_lua.patch - CONFIGURE_COMMAND "" - BUILD_COMMAND cd src && make all - BUILD_IN_SOURCE 1 - INSTALL_COMMAND "" -) - -# Dirty trick to get directory created and not fails at -# INTERFACE_INCLUDE_DIRECTORIES set -execute_process(COMMAND mkdir -p ${CMAKE_SOURCE_DIR}/3rdparty/lua/src) - -PROJECT_TARGET_ADD(lua-lib) - -add_library(${TARGET_NAME} STATIC IMPORTED GLOBAL) - -SET_TARGET_PROPERTIES(${TARGET_NAME} PROPERTIES - IMPORTED_LOCATION ${LUA_SOURCE_DIR}/src/liblua.a - INTERFACE_INCLUDE_DIRECTORIES ${LUA_SOURCE_DIR}/src -) - -add_dependencies(${TARGET_NAME} ${LUA}) - -PROJECT_TARGET_ADD(lua) - -add_executable(${TARGET_NAME} IMPORTED GLOBAL) - -SET_TARGET_PROPERTIES(${TARGET_NAME} PROPERTIES - LABELS EXECUTABLE - IMPORTED_LOCATION ${LUA_SOURCE_DIR}/src/lua -) - -add_dependencies(${TARGET_NAME} ${LUA}) - -PROJECT_TARGET_ADD(lua-compiler) - -add_executable(${TARGET_NAME} IMPORTED GLOBAL) - -SET_TARGET_PROPERTIES(${TARGET_NAME} PROPERTIES - LABELS EXECUTABLE - IMPORTED_LOCATION ${LUA_SOURCE_DIR}/src/luac -) - -add_dependencies(${TARGET_NAME} ${LUA}) |