blob: acfe8637fc855d08d411260a8e9b76184c6095b0 [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# Submodule specific includes will go here,
32# These are specified here, since these variables are accessed
33# from multiple sub directories. If the variable is subdirectory
34# specific it must be declared in the subdirectory.
35##
36
37
38##
39# Include the subdirs
40##
41set(
42 subdirs
43 about
44 composer
Rajesh3e40e752016-09-12 17:28:09 -040045 config
Jeremy Mordkoffe29efc32016-09-07 18:59:17 -040046 debug
47# goodbyworld
48# helloworld
49 launchpad
50 accounts
51 logging
52 )
53rift_add_subdirs(
54 SUBDIR_LIST
55 ${subdirs}
56 )