forked from OpenModelica/OpenModelica
-
Notifications
You must be signed in to change notification settings - Fork 1
/
configure.ac
95 lines (80 loc) · 2.43 KB
/
configure.ac
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ([2.63])
AC_INIT([OpenModelica],[dev],[https://trac.openmodelica.org/OpenModelica],[openmodelica],[https://openmodelica.org])
AC_LANG([C])
AC_PROG_CC
AC_PROG_CXX
AC_PROG_CPP
m4_include([common/m4/pre-commit.m4])
m4_include([common/m4/ombuilddir.m4])
m4_include([common/m4/omhome.m4])
AC_SUBST(RPATH_QMAKE)
AC_SUBST(SHREXT)
AC_SUBST(APP)
AC_SUBST(OMC_TARGET)
AC_ARG_WITH(cppruntime, [ --with-cppruntime (build the optional cppruntime simulation libraries)],[OMC_TARGET="$withval"],[OMC_TARGET="no"])
AC_MSG_CHECKING([if cppruntime is requested])
if test "$OMC_TARGET" = "yes"; then
OMC_TARGET=all-runtimeCPPinstall
AC_MSG_RESULT([yes])
else
OMC_TARGET=
AC_MSG_RESULT([no])
fi
AC_SUBST(OMLIBRARY_TARGET)
AC_ARG_WITH(omlibrary, [ --with-omlibrary=[core,all,no] (which libraries to build; default is core; the libraries used by the testsuite)],[OMLIBRARY_TARGET="$withval"],[OMLIBRARY_TARGET="core"])
AC_MSG_CHECKING([for omlibrary target])
case "$OMLIBRARY_TARGET" in
"yes"|"core")
OMLIBRARY_TARGET="omlibrary-core"
AC_MSG_RESULT([core])
;;
"no")
OMLIBRARY_TARGET=""
AC_MSG_RESULT([none])
;;
"all")
OMLIBRARY_TARGET="omlibrary-all"
AC_MSG_RESULT([all])
;;
*)
AC_MSG_ERROR("unknown omlibrary target $OMLIBRARY_TARGET")
;;
esac
if test ! -z "$OMLIBRARY_TARGET"; then
AC_MSG_CHECKING([for libraries directory])
if test -f libraries/Makefile; then
AC_MSG_RESULT([yes])
else
AC_MSG_ERROR([no])
fi
fi
AC_SUBST(CMAKE_LDFLAGS)
if echo $host | grep -i darwin; then
CMAKE_LDFLAGS="-Wl,-undefined -Wl,dynamic_lookup"
fi
m4_include([common/m4/corba.m4])
AC_SUBST(ALL_TARGETS)
if test ! -z "$USE_CORBA"; then
CORBA_TARGETS="OMOptim-omoptim"
fi
for dir_target in OMCompiler-omc OMPlot-omplot OMEdit-omedit OMNotebook-omnotebook OMShell-omshell $CORBA_TARGETS; do
dir=`echo $dir_target | cut -d- -f1`
if test ! -f "$dir/configure.ac"; then
AC_MSG_NOTICE("Subproject $dir does not exist")
else
if !(cd "$dir" && autoconf); then
AC_MSG_ERROR("Failed to autoconf $dir")
fi
ALL_TARGETS="$ALL_TARGETS `echo $dir_target | cut -d- -f2-`"
fi
done
AC_SUBST(ALL_TARGETS)
if test -f testsuite/Makefile; then
ALL_TARGETS="$ALL_TARGETS testsuite-depends"
fi
AC_CONFIG_SUBDIRS([OMCompiler OMPlot OMEdit OMNotebook OMShell])
if test ! -z "$USE_CORBA"; then
AC_CONFIG_SUBDIRS([OMOptim])
fi
AC_OUTPUT(Makefile)