diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-05-14 20:09:41 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-05-14 20:09:41 -0500 |
commit | 07b3d083b49b4cbb248b5ba0aeba2bbdd3cc487d (patch) | |
tree | 5f80a6862e44b938c4e7f62f457d1b48f5a0195b /solenv/inc/unx.mk | |
parent | 007f16ef7ad40ae932df884ba04f0de71928b852 (diff) |
TDE integration
Change-Id: I6f468005c8d8d99d9251a9c4fe4629b98bc4aa5e
Diffstat (limited to 'solenv/inc/unx.mk')
-rw-r--r-- | solenv/inc/unx.mk | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/solenv/inc/unx.mk b/solenv/inc/unx.mk index 3093d587bd2f..fa304d9690af 100644 --- a/solenv/inc/unx.mk +++ b/solenv/inc/unx.mk @@ -167,6 +167,18 @@ DLLPOST!:=$(DLLPOST).$($(UNIXVERSIONNAMES)_MAJOR) .ENDIF .ENDIF # "$(UNIXVERSIONNAMES)"!="" +# enable building/linking TDE-dependent code in both OOo and SO build environment +.IF "$(ENABLE_TDE)" != "" +.IF "$(TDE_ROOT)"!="" +TDE_CFLAGS:=-I$(TDE_ROOT)/include -I/usr/include/tqt -DQT_CLEAN_NAMESPACE +TDE_LIBS:=-ltdeui -ltdecore -ltqt -ltqt-mt +SOLARLIB+=-L$(TDE_ROOT)/lib +.IF "$(OS)$(CPU)" == "LINUXX" +SOLARLIB+=-L$(TDE_ROOT)/lib64 +.ENDIF # "$(OS)$(CPU)" == "LINUXX" +.ENDIF # "$(TDE_ROOT)"!="" +.ENDIF # "$(ENABLE_TDE)" != "" + # enable building/linking KDE-dependent code in both OOo and SO build environment .IF "$(ENABLE_KDE)" != "" .IF "$(KDE_ROOT)"!="" |