summaryrefslogtreecommitdiffstats
path: root/3rdparty/CMakeLists.txt
blob: 7af6f4a685f35d6363d9f50500986d706d37c80c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
###########################################################################
# 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 ""
)

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})