Skip to content

Commit

Permalink
Compiler warnings (Cmake related) removed
Browse files Browse the repository at this point in the history
  • Loading branch information
ghorwin committed Sep 29, 2024
1 parent 47342ce commit f3a2691
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build/cmake/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# CMakeLists.txt file for MasterSim library and applications
# Author: Andreas Nicolai (andreas.nicolai -at- tu-dresden.de)

# Require a fairly recent cmake version
cmake_minimum_required( VERSION 2.8...3.10 )

# The project name
project( MasterSimBundle )

# Require a fairly recent cmake version
cmake_minimum_required( VERSION 2.8.12 )

# enable @rpath on MacOS
cmake_policy(SET CMP0042 NEW)

Expand Down
5 changes: 3 additions & 2 deletions build/cmake/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,10 @@ if [ -e $BUILDDIR/MasterSimulator/MasterSimulator ]; then
fi &&
if [ -e $BUILDDIR/MasterSimulatorUI/MasterSimulatorUI ]; then
echo "*** Copying MasterSimulatorUI to bin/release ***" &&
cp $BUILDDIR/MasterSimulatorUI/MasterSimulatorUI ../../bin/release/MasterSimulatorUI &&
cp $BUILDDIR/MasterSimulatorUI/MasterSimulatorUI ../../bin/release/MasterSimulatorUI
# next call may fail on GitHub actions, so we do not require this to succeed
../../bin/release/MasterSimulatorUI --man-page > ../../MasterSimulatorUI/doc/MasterSimulatorUI.1
fi &&
fi
if [ -e $BUILDDIR/MasterSimulatorUI/MasterSimulatorUI.app ]; then
if [ -e ../../bin/release/MasterSimulatorUI.app ]; then
rm -rf ../../bin/release/MasterSimulatorUI.app
Expand Down

0 comments on commit f3a2691

Please sign in to comment.