added editconfigparametermap.scss
[osm/UI.git] / CMakeLists.txt
1
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
28 cmake_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 ##
34 include(rift_submodule)
35
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 ##
47 set(
48   subdirs
49     skyquake
50   )
51 rift_add_subdirs(
52   SUBDIR_LIST
53     ${subdirs}
54   )
55
56 ##
57 # This macro adds targets for documentaion, unittests, code coverage and packaging
58 ##
59 rift_add_submodule_targets(SUBMODULE_PACKAGE_NAME "rw.ui")