Skip to content
This repository has been archived by the owner on Mar 5, 2021. It is now read-only.

Commit

Permalink
Merge pull request #2 from JuPedSim/release
Browse files Browse the repository at this point in the history
Version 0.8.5
  • Loading branch information
sainho93 committed Nov 2, 2018
2 parents f040b50 + 72b919c commit 5f36689
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ configure-linux:
script:
- mkdir -p build
- cd build
- cmake -DCMAKE_BUILD_TYPE=Debug ..
- cmake -DCMAKE_BUILD_TYPE=Debug -DDESIRED_QT_VERSION=4 ..
- echo "configure | ${CI_PROJECT_DIR}"
stage: configure
tags:
Expand Down
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ endif()

message( STATUS "Generating ................................... ${PROJECT_NAME} (${JPSEDITOR_VERSION}) -- ${CMAKE_BUILD_TYPE}")
if(APPLE )

set(CMAKE_INSTALL_PREFIX "/tmp")

endif()
message(STATUS "${PROJECT_NAME} will be installed to ${CMAKE_INSTALL_PREFIX}")

Expand Down
11 changes: 9 additions & 2 deletions jpseditor.pro
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# along with JuPedSim. If not, see <http://www.gnu.org/licenses/>.
#
# copyright <2009-2018> Forschungszentrum Juelich GmbH.

# Compatibility with Qt4 and Qt5
greaterThan(QT_MAJOR_VERSION, 4):QT += widgets

Expand Down Expand Up @@ -100,13 +100,15 @@ SOURCES += \

#INCLUDEPATH += D:/boost_1_59_0/boost_1_59_0

RESOURCES += \
RESOURCES += \
Resources/resources.qrc

RC_FILE = Resources/jpseditor.rc
#osx fix
ICON = Resources/jpseditor.icns

demos.path = /usr/local/bin/jpseditor
demos.files = examples/*

CONFIG(debug, debug|release) {
DESTDIR = build/debug
Expand All @@ -119,3 +121,8 @@ OBJECTS_DIR = $$DESTDIR/.obj
MOC_DIR = $$DESTDIR/.moc
RCC_DIR = $$DESTDIR/.qrc
UI_DIR = $$DESTDIR/.u

INSTALLS += demos

target.path = /usr/local/bin/jpseditor
INSTALLS += target
4 changes: 3 additions & 1 deletion jpseditor.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
class Jpseditor < Formula
desc "A graphical user interface to create the geometry of a scenario simulated by JuPedSim"
homepage "https://www.jupedsim.org/"
head "https://github.com/JuPedSim/jpseditor.git"

head "https://github.com/JuPedSim/jpseditor.git" :branch => "develop"


depends_on "cmake" => :build
depends_on "qt"
Expand Down

0 comments on commit 5f36689

Please sign in to comment.