Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/ARToolKitPlus/build/linux/options.pro
diff options
context:
space:
mode:
Diffstat (limited to 'ARToolKitPlus/build/linux/options.pro')
-rw-r--r--ARToolKitPlus/build/linux/options.pro56
1 files changed, 0 insertions, 56 deletions
diff --git a/ARToolKitPlus/build/linux/options.pro b/ARToolKitPlus/build/linux/options.pro
deleted file mode 100644
index 2c4926d..0000000
--- a/ARToolKitPlus/build/linux/options.pro
+++ /dev/null
@@ -1,56 +0,0 @@
-# ############################################################
-#
-# Linux project definitions for ARTookKitPlus
-#
-
-###
-# change target install path
-
-INSTALL_PATH = /home/seba/Facultad/ProyectoGrado/instalacionArtoolkitPlus
-isEmpty(PREFIX) { PREFIX = $$INSTALL_PATH }
-isEmpty(LIBDIR) { LIBDIR = $$PREFIX/lib }
-
-###
-# choose between debug and release mode
-
-CONFIG = debug
-#CONFIG = release
-
-###
-# add additional optimization flags (platform-specific)
-
-equals(ARCH, x86_64) {
- # options for AMD64
-}
-else {
-# QMAKE_CXXFLAGS = -mtune=pentium4 -march=pentium4 -msse2 -msse -fpermissive
- # QMAKE_CXXFLAGS = -mtune=pentium4 -march=pentium4 -msse2 -msse
-}
-
-
-# ############################################################
-# DO NOT EDIT BELOW THIS LINE !!!
-# ############################################################
-
-VERSION = 2.0.2
-
-UNAME = $$system(uname -r)
-#message("Found kernel ($$UNAME) ...")
-
-LANGUAGE = C++
-
-debug {
- OBJECTS_DIR = $$(ARTKP)/build/linux/debug
-}
-
-release {
- OBJECTS_DIR = $$(ARTKP)/build/linux/release
-}
-
-DEPENDPATH += $$(ARTKP)/include
-
-INCLUDEPATH += $$(ARTKP)/include
-
-LIBS += -L$$(ARTKP)/lib
-
-# ############################################################