-rw-r--r-- | examples/simple-icon/simple-icon.pro | 2 | ||||
-rw-r--r-- | examples/simple-main/simple-main.pro | 2 | ||||
-rw-r--r-- | examples/simple/simple.pro | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/examples/simple-icon/simple-icon.pro b/examples/simple-icon/simple-icon.pro index eda2692..d75e594 100644 --- a/examples/simple-icon/simple-icon.pro +++ b/examples/simple-icon/simple-icon.pro @@ -1,16 +1,16 @@ # remember each example is based on the other CONFIG += qt warn_on quick-app TARGET = simple-icon HEADERS = simple.h SOURCES = simple.cpp INCLUDEPATH += $(OPIEDIR)/include DEPENDPATH += $(OPIEDIR)/include -LIBS += -lqpe +LIBS += -lqpe -lopiecore2 include( $(OPIEDIR)/include.pro ) diff --git a/examples/simple-main/simple-main.pro b/examples/simple-main/simple-main.pro index ded8ed2..28d16e2 100644 --- a/examples/simple-main/simple-main.pro +++ b/examples/simple-main/simple-main.pro @@ -1,17 +1,17 @@ CONFIG += qt warn_on quick-app TARGET = simple-main HEADERS = simple.h SOURCES = simple.cpp INCLUDEPATH += $(OPIEDIR)/include DEPENDPATH += $(OPIEDIR)/include -LIBS += -lqpe +LIBS += -lqpe -lopiecore2 include( $(OPIEDIR)/include.pro ) diff --git a/examples/simple/simple.pro b/examples/simple/simple.pro index 8f006f6..40b0aaf 100644 --- a/examples/simple/simple.pro +++ b/examples/simple/simple.pro @@ -1,38 +1,38 @@ # '#' introduces a comment #CONFIG says the qmake buildsystem what to use # CONFIG += qt warn_on quick-app # qt = Use qt # warn_on = warnings are on # quick-app = Tell the buildsystem that the apps is quick-launchable # # Note if you do not supply quick-app you need to set # TEMPLATE = app or TEMPLATE = lib depending on if you want to build an executable or lib # and DESTDIR= $(OPIEDIR)/bin or $(OPIEDIR)/lib TARGET = simple # the name of the resulting object HEADERS = simple.h # A list header files SOURCES = simple.cpp # A list of source files INTERFACES = # list of ui files INCLUDEPATH += $(OPIEDIR)/include DEPENDPATH += $(OPIEDIR)/include -LIBS += -lqpe +LIBS += -lqpe -lopiecore2 # libs to link against #Important include the global include.pro just like below include( $(OPIEDIR)/include.pro ) |