20 lines
615 B
Bash
Executable File
20 lines
615 B
Bash
Executable File
cd CXXTerminal/libraries/
|
|
./build_event.sh #TODO test status!
|
|
cd ../build/
|
|
cmake .. -DCMAKE_BUILD_TYPE="Debug" -DCMAKE_CXX_FLAGS="${CXX_FLAGS}" -DCMAKE_C_FLAGS="${C_FLAGS}" -DCMAKE_BUILD_TYPE=RelWithDebInfo ${CMAKE_OPTIONS}
|
|
make ${CMAKE_MAKE_OPTIONS}
|
|
sudo make install
|
|
|
|
#!/usr/bin/env bash
|
|
|
|
source ../scripts/build_helper.sh
|
|
|
|
library_path="CXXTerminal"
|
|
requires_rebuild ${library_path}
|
|
[[ $? -eq 0 ]] && exit 0
|
|
|
|
|
|
#./build_event.sh
|
|
cmake_build ${library_path} -DCMAKE_BUILD_TYPE="Debug" -DCMAKE_BUILD_TYPE=RelWithDebInfo
|
|
check_err_exit ${library_path} "Failed to build libevent!"
|
|
set_build_successful ${library_path} |