File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed
Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ endmacro()
4040############################################
4141
4242list ( APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR} /misc/CMake-Modules )
43+ list ( APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR} /.carna-dev )
4344
4445############################################
4546# Define default paths for the installation
@@ -155,4 +156,4 @@ install( FILES
155156
156157if ( BUILD_TEST )
157158 add_subdirectory ( test )
158- endif ()
159+ endif ()
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ set -ex
3+
4+ if [ -z " $CARNA_SRC_PREFIX " ]; then
5+ echo " CARNA_SRC_PREFIX is not set."
6+ exit 1
7+ fi
8+ export ROOT=$( dirname " $0 " )
9+ export CARNA_INSTALL_PREFIX=" $ROOT /.carna-dev"
10+
11+ # Build development version of Carna
12+ cd " $CARNA_SRC_PREFIX "
13+ export BUILD=only_release
14+ export CARNA_NO_INSTALL=1
15+ export CMAKE_ARGS=" -DCMAKE_INSTALL_PREFIX=$CARNA_INSTALL_PREFIX $CMAKE_ARGS "
16+ export CMAKE_ARGS=" -DINSTALL_CMAKE_DIR=$CARNA_INSTALL_PREFIX $CMAKE_ARGS "
17+ bash linux_build-egl.bash
18+
19+ cd build/make_release
20+ make install
You can’t perform that action at this time.
0 commit comments