blob: 8a21f2fd79d579e4c140b88267e04a1acb34af41 [file] [log] [blame]
Jeremy Mordkoffe29efc32016-09-07 18:59:17 -04001#
2# Copyright 2016 RIFT.IO Inc
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16# Author(s): Kiran Kashalkar
17# Creation Date: 08/18/2015
18#
19
20##
21# DEPENDENCY ALERT
22# The submodule dependencies must be specified in the
23# .gitmodules.dep file at the top level (supermodule) directory
24# If this submodule depends other submodules remember to update
25# the .gitmodules.dep
26##
27
28cmake_minimum_required(VERSION 2.8)
29
30##
31# DO NOT add any code before this and DO NOT
32# include this file anywhere else
33##
Jeremy Mordkoff03156e32017-09-30 21:42:44 -040034include(rift_submodule NO_POLICY_SCOPE)
Jeremy Mordkoffe29efc32016-09-07 18:59:17 -040035
36##
37# Submodule specific includes will go here,
38# These are specified here, since these variables are accessed
39# from multiple sub directories. If the variable is subdirectory
40# specific it must be declared in the subdirectory.
41##
42
43
44##
45# Include the subdirs
46##
47set(
48 subdirs
49 skyquake
50 )
51rift_add_subdirs(
52 SUBDIR_LIST
53 ${subdirs}
54 )
55
56##
Jeremy Mordkoff03156e32017-09-30 21:42:44 -040057# Only skyquake package contains anything
58##
59rift_set_component_package_fields(
60 skyquake
61 DESCRIPTION "RIFT.ware UI"
62 POST_INSTALL_SCRIPT "${CMAKE_CURRENT_SOURCE_DIR}/postinst"
63 )
64
65##
Jeremy Mordkoffe29efc32016-09-07 18:59:17 -040066# This macro adds targets for documentaion, unittests, code coverage and packaging
67##
68rift_add_submodule_targets(SUBMODULE_PACKAGE_NAME "rw.ui")