Fix project delete exception
[osm/SO.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): Anil Gunturu
17 # Creation Date: 03/26/2014
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 message(CMAKE_MODULE_PATH=${CMAKE_MODULE_PATH})
31
32 ##
33 # DO NOT add any code before this and DO NOT
34 # include this file anywhere else
35 ##
36 include(rift_submodule)
37 include(rift_python)
38
39 ##
40 # Submodule specific includes will go here, 
41 # These are specified here, since these variables are accessed
42 # from multiple sub directories. If the variable is subdirectory
43 # specific it must be declared in the subdirectory.
44 ##
45
46 ##
47 # Include the subdirs
48 ##
49 set(subdirs
50   common
51   examples
52   models
53   rwcal
54   rwmon
55   rwcm
56   rwlaunchpad
57   rwprojectmano
58   )
59
60 if (NOT RIFT_AGENT_BUILD STREQUAL "XML_ONLY")
61   list(APPEND subdirs confd_client)
62 endif()
63
64 rift_add_subdirs(SUBDIR_LIST ${subdirs})
65
66 ##
67 # This macro adds targets for documentaion, unittests, code coverage and packaging
68 ##
69 rift_add_submodule_targets(SUBMODULE_PACKAGE_NAME "rw.core.mano")
70
71 # Workaround whatever mess rw.package is doing as it can't seem
72 # to figure out that it should make a directory -before- making
73 # symlinks..
74 set(dir usr/lib64/python${RIFT_PYTHON3}/site-packages/gi/overrides)
75 install(FILES
76   ${CMAKE_CURRENT_SOURCE_DIR}/.cpack-workaround
77   DESTINATION ${dir})
78
79 if (RIFT_SUPPORT_PYTHON2)
80   set(dir usr/lib64/python${RIFT_PYTHON2}/site-packages/gi/overrides)
81
82   install(FILES
83     ${CMAKE_CURRENT_SOURCE_DIR}/.cpack-workaround
84     DESTINATION ${dir})
85 endif()
86
87