summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/tictac/config.in2
-rw-r--r--noncore/games/tictac/main.cpp3
-rw-r--r--noncore/games/tictac/opie-tictac.control2
-rw-r--r--noncore/games/tictac/tictac.pro2
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 @@
1 config TICTAC 1 config TICTAC
2 boolean "opie-tictac (Tic Tac Toe, I have three in a row)" 2 boolean "opie-tictac (Tic Tac Toe, I have three in a row)"
3 default "y" 3 default "y"
4 depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE 4 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
@@ -3,10 +3,11 @@
3** 3**
4** This file is part of an example program for Qt. This example 4** This file is part of an example program for Qt. This example
5** program may be used, distributed and modified without limitation. 5** program may be used, distributed and modified without limitation.
6** 6**
7*****************************************************************************/ 7*****************************************************************************/
8 8
9#include <opie/oapplicationfactory.h>
10#include "tictac.h" 9#include "tictac.h"
11 10
11#include <opie2/oapplicationfactory.h>
12
12OPIE_EXPORT_APP( OApplicationFactory<TicTacToe> ) 13OPIE_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 @@
1Package: opie-tictac 1Package: opie-tictac
2Files: plugins/application/libtictac.so* bin/tictac apps/Games/tictac.desktop pics/tictac 2Files: plugins/application/libtictac.so* bin/tictac apps/Games/tictac.desktop pics/tictac
3Priority: optional 3Priority: optional
4Section: opie/games 4Section: opie/games
5Maintainer: ljp <ljp@llornkcor.com> 5Maintainer: ljp <ljp@llornkcor.com>
6Architecture: arm 6Architecture: arm
7Depends: task-opie-minimal 7Depends: task-opie-minimal, libopiecore2
8Description: Tic Tac Toe game. 8Description: Tic Tac Toe game.
9Version: $QPE_VERSION$EXTRAVERSION 9Version: $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 @@
1CONFIG += qt warn_on release quick-app 1CONFIG += qt warn_on release quick-app
2HEADERS = tictac.h 2HEADERS = tictac.h
3SOURCES = main.cpp \ 3SOURCES = main.cpp \
4 tictac.cpp 4 tictac.cpp
5INCLUDEPATH += $(OPIEDIR)/include 5INCLUDEPATH += $(OPIEDIR)/include
6DEPENDPATH += $(OPIEDIR)/include 6DEPENDPATH += $(OPIEDIR)/include
7LIBS += -lqpe 7LIBS += -lqpe -lopiecore2
8 8
9 TARGET = tictac 9 TARGET = tictac
10 10
11include ( $(OPIEDIR)/include.pro ) 11include ( $(OPIEDIR)/include.pro )