summaryrefslogtreecommitdiff
path: root/qmake/qmake-native-3.2.3/common.pro
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
committerChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
commit2c5b8ec6d95cf68650265941530e5ce38c8dd6d9 (patch)
treebf879bea7ef8517ba8c3d1286ef300401d3d484c /qmake/qmake-native-3.2.3/common.pro
parent101e2f1623def0a355d20aacb8bd93810703e834 (diff)
Merge oe-devel@oe-devel.bkbits.net:openembedded
into hyperion.kergoth.com:/home/kergoth/code/openembedded 2004/12/09 03:39:39-06:00 kergoth.com!kergoth Break people's builds again.. this time moving the packages into a packages/ subdir to clean things up a bit. BKrev: 41b81f3dvlp3rU7_8MUXLcI8LDdDoA
Diffstat (limited to 'qmake/qmake-native-3.2.3/common.pro')
-rw-r--r--qmake/qmake-native-3.2.3/common.pro108
1 files changed, 0 insertions, 108 deletions
diff --git a/qmake/qmake-native-3.2.3/common.pro b/qmake/qmake-native-3.2.3/common.pro
deleted file mode 100644
index 382d93f5d1..0000000000
--- a/qmake/qmake-native-3.2.3/common.pro
+++ /dev/null
@@ -1,108 +0,0 @@
-#====================================================================================
-# common.pro (C) 2004 Michael 'Mickey' Lauer <mickey@Vanille.de>
-#====================================================================================
-#
-# Purpose: This file contains qmake scope rules of common usage
-#
-# Example: When building a qmake based application using libsdl,
-# use CONFIG+=sdl to add the proper include and library
-# paths and definitions to the resulting Makefile
-#
-#
-# General problem: One has to decide between evaluation at makefile generation time
-# and evaluation at makefile processing time.
-# The following example illustrates the difference:
-#
-# Evaluation at makefile processing time:
-#
-# sdl {
-# QMAKE_CFLAGS += `sdl-config --cflags`
-# LIBS += `sdl-config --libs`
-# }
-#
-# Evalutation at makefile generation time:
-#
-# sdl {
-# QMAKE_CFLAGS += $$system( sdl-config --cflags )
-# LIBS += `sdl-config --libs`
-# }
-#
-# For now I use version 2 which is a bit faster
-# See the fine qmake manual for more details
-#
-#
-
-#=============================================================================
-# pthread scope for multithreaded applications
-#
-
-pthread {
- LIBS += -lpthread
-}
-
-#=============================================================================
-# sdl scopes for applications using the Simple Direct Media Layer (SDL)
-#
-
-sdl {
- QMAKE_CXXFLAGS += $$system( sdl-config --cflags )
- DEFINES += USE_SDL QTOPIA
- LIBS += $$system( sdl-config --libs )
-}
-
-sdl-mixer {
- LIBS += -lSDL_mixer
-}
-
-sdl-image {
- LIBS += -lSDL_image
-}
-
-sdl-font {
- LIBS += -lSDL_ttf
-}
-
-#=============================================================================
-#
-#
-
-opie {
- DEFINES += QWS
-}
-
-opiecore {
- LIBS += -lopiecore2
-}
-
-opieui {
- CONFIG += opiecore
- LIBS += -lopieui2
-}
-
-opienet {
- CONFIG += opiecore
- LIBS += -lopienet2
-}
-
-opiepim {
- CONFIG += opiecore
- LIBS += -lopiepim2
-}
-
-opiedb {
- CONFIG += opiecore
- LIBS += -lopiedb2
-}
-
-opiemm {
- CONFIG += opiecore
- LIBS += -lopiemm2
-}
-
-#=============================================================================
-#
-#
-
-#=============================================================================
-#
-#