~marcustomlinson/unity-js-scopes/support-new-sdk

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
64
65
66
67
68
69
# vim:expandtab:shiftwidth=2:tabstop=2:

# Copyright (C) 2015 Canonical Ltd.

# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.

# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.

# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

cmake_minimum_required(VERSION 2.8.11)

project(js-scopes)

include(CheckCXXCompilerFlag)
include(CheckIncludeFileCXX)

# Standard install paths
include(GNUInstallDirs)

set(CMAKE_INCLUDE_CURRENT_DIR TRUE CACHE INTERNAL "")

message(STATUS "Retrieving deps")

execute_process(
  COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/deps/get.sh
  WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
  RESULT_VARIABLE _DEPS_RESULT
  )

if(NOT _DEPS_RESULT EQUAL 0)
  message(FATAL_ERROR "Retriving deps failed")
endif()

include_directories(
  ${CMAKE_CURRENT_SOURCE_DIR}/deps/io.js/deps/uv/include
  ${CMAKE_CURRENT_SOURCE_DIR}/deps/io.js/deps/v8/include
  ${CMAKE_CURRENT_SOURCE_DIR}/deps/io.js/src
  ${CMAKE_CURRENT_SOURCE_DIR}/deps/v8-cpp/src
  ${CMAKE_CURRENT_SOURCE_DIR}/src
  )

string(TOLOWER "${CMAKE_BUILD_TYPE}" cmake_build_type_tolower)
if(cmake_build_type_tolower STREQUAL "debug")
  link_directories(
    ${CMAKE_CURRENT_SOURCE_DIR}/deps/io.js/out/Debug
  )
else()
  link_directories(
    ${CMAKE_CURRENT_SOURCE_DIR}/deps/io.js/out/Release
  )
endif()

add_subdirectory(src)
add_subdirectory(doc)

install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/examples
        DESTINATION ${CMAKE_INSTALL_DATADIR}/unity-js-scopes)

install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/qtc-templates/scope-js
        DESTINATION /usr/share/qtcreator/templates/wizards/ubuntu)