author | mickeyl <mickeyl> | 2003-03-16 19:12:10 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2003-03-16 19:12:10 (UTC) |
commit | 0aff3e917df1fb56eb1f2a6b2ed98355b25ad653 (patch) (unidiff) | |
tree | 0047025c8aa3c46c2fe2cf073a16748741beae3a | |
parent | ae6b3de789726af3928664ef03eac81950e716e4 (diff) | |
download | opie-0aff3e917df1fb56eb1f2a6b2ed98355b25ad653.zip opie-0aff3e917df1fb56eb1f2a6b2ed98355b25ad653.tar.gz opie-0aff3e917df1fb56eb1f2a6b2ed98355b25ad653.tar.bz2 |
explicitly link against libstdc++ (needed for cross-compilation, e.g. when linking with arm-linux-gcc)
-rw-r--r-- | noncore/games/tetrix/tetrix.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/games/tetrix/tetrix.pro b/noncore/games/tetrix/tetrix.pro index f316dc2..b2beaaf 100644 --- a/noncore/games/tetrix/tetrix.pro +++ b/noncore/games/tetrix/tetrix.pro | |||
@@ -14,7 +14,7 @@ SOURCES = main.cpp \ | |||
14 | ohighscoredlg.cpp | 14 | ohighscoredlg.cpp |
15 | INCLUDEPATH += $(OPIEDIR)/include | 15 | INCLUDEPATH += $(OPIEDIR)/include |
16 | DEPENDPATH+= $(OPIEDIR)/include | 16 | DEPENDPATH+= $(OPIEDIR)/include |
17 | LIBS += -lqpe | 17 | LIBS += -lqpe -lstdc++ |
18 | INTERFACES= | 18 | INTERFACES= |
19 | TARGET = tetrix | 19 | TARGET = tetrix |
20 | 20 | ||