Skip to content

Commit b6a6e35

Browse files
committed
- Added support for omniORB in qtclients.
+ We can now remove the dependency on mico for Linux systems. git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@5344 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
1 parent 257ad39 commit b6a6e35

File tree

6 files changed

+13
-826
lines changed

6 files changed

+13
-826
lines changed

OMShell/Makefile

Lines changed: 0 additions & 289 deletions
This file was deleted.

OMShell/OMShell.pro

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
TEMPLATE = app
22

33
DEPENDPATH += .
4-
MICOHOME = $$system(mico-config --prefix)
5-
INCLUDEPATH += $${MICOHOME}/include
6-
MICO_LIBS = $$system(mico-config --libs)
7-
LIBS+= $${MICO_LIBS}
4+
win32 {
5+
CORBAINC = $$system(mico-config --prefix)/include
6+
CORBALIBS = $$system(mico-config --libs)
7+
} else {
8+
CORBAINC = $$(CORBACFLAGS)
9+
CORBALIBS = $$(CORBALIBS)
10+
}
11+
12+
INCLUDEPATH += $${CORBAINC)
13+
LIBS+= $${CORBALIBS}
14+
815
CONFIG += warn_on
916
QT += network xml
1017

0 commit comments

Comments
 (0)