forked from cmake-basis/BASIS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
50 lines (42 loc) · 1.53 KB
/
CMakeLists.txt
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
# ============================================================================
# Copyright (c) 2011-2012 University of Pennsylvania
# Copyright (c) 2013-2016 Andreas Schuh
# All rights reserved.
#
# See COPYING file for license information or visit
# https://cmake-basis.github.io/download.html#license
# ============================================================================
##############################################################################
# @file CMakeLists.txt
# @brief Build configuration of utilities.
##############################################################################
basis_make_target_uid (ALL_UTILITIES utilities)
add_custom_target (${ALL_UTILITIES})
# ----------------------------------------------------------------------------
# C++ utilities
add_subdirectory (cxx)
# ----------------------------------------------------------------------------
# Java utilities
if (Java_FOUND)
add_subdirectory (java)
endif ()
# ----------------------------------------------------------------------------
# Python utilities
if (PythonInterp_FOUND)
add_subdirectory (python)
endif ()
# ----------------------------------------------------------------------------
# Perl utilities
if (Perl_FOUND)
add_subdirectory (perl)
endif ()
# ----------------------------------------------------------------------------
# BASH utilities
if (BASH_FOUND)
add_subdirectory (bash)
endif ()
# ----------------------------------------------------------------------------
# MATLAB utilities
if (MATLAB_FOUND)
add_subdirectory (matlab)
endif ()