-rw-r--r-- | noncore/games/tictac/config.in | 2 | ||||
-rw-r--r-- | noncore/games/tictac/main.cpp | 3 | ||||
-rw-r--r-- | noncore/games/tictac/opie-tictac.control | 2 | ||||
-rw-r--r-- | noncore/games/tictac/tictac.pro | 2 |
4 files changed, 5 insertions, 4 deletions
diff --git a/noncore/games/tictac/config.in b/noncore/games/tictac/config.in index a50a50f..65d1c06 100644 --- a/noncore/games/tictac/config.in +++ b/noncore/games/tictac/config.in @@ -1,4 +1,4 @@ config TICTAC boolean "opie-tictac (Tic Tac Toe, I have three in a row)" default "y" - depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE + depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE2CORE diff --git a/noncore/games/tictac/main.cpp b/noncore/games/tictac/main.cpp index 9aafe4c..b8193f7 100644 --- a/noncore/games/tictac/main.cpp +++ b/noncore/games/tictac/main.cpp @@ -1,12 +1,13 @@ /**************************************************************************** ** Copyright (C) 1992-2000 Trolltech AS. All rights reserved. ** ** This file is part of an example program for Qt. This example ** program may be used, distributed and modified without limitation. ** *****************************************************************************/ -#include <opie/oapplicationfactory.h> #include "tictac.h" +#include <opie2/oapplicationfactory.h> + OPIE_EXPORT_APP( OApplicationFactory<TicTacToe> ) diff --git a/noncore/games/tictac/opie-tictac.control b/noncore/games/tictac/opie-tictac.control index 0b124c9..cc97bec 100644 --- a/noncore/games/tictac/opie-tictac.control +++ b/noncore/games/tictac/opie-tictac.control @@ -1,9 +1,9 @@ Package: opie-tictac Files: plugins/application/libtictac.so* bin/tictac apps/Games/tictac.desktop pics/tictac Priority: optional Section: opie/games Maintainer: ljp <ljp@llornkcor.com> Architecture: arm -Depends: task-opie-minimal +Depends: task-opie-minimal, libopiecore2 Description: Tic Tac Toe game. Version: $QPE_VERSION$EXTRAVERSION diff --git a/noncore/games/tictac/tictac.pro b/noncore/games/tictac/tictac.pro index 2967079..45eb515 100644 --- a/noncore/games/tictac/tictac.pro +++ b/noncore/games/tictac/tictac.pro @@ -1,11 +1,11 @@ CONFIG += qt warn_on release quick-app HEADERS = tictac.h SOURCES = main.cpp \ tictac.cpp INCLUDEPATH += $(OPIEDIR)/include DEPENDPATH += $(OPIEDIR)/include -LIBS += -lqpe +LIBS += -lqpe -lopiecore2 TARGET = tictac include ( $(OPIEDIR)/include.pro ) |