~librecad-dev/librecad/librecad

« back to all changes in this revision

Viewing changes to plugins/list/list.pro

  • Committer: Scott Howard
  • Date: 2014-02-21 19:07:55 UTC
  • Revision ID: showard@debian.org-20140221190755-csjax9wb146hgdq4
first commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#-------------------------------------------------
 
2
#
 
3
# Project created by QtCreator 2011-03-22T19:33:11
 
4
#
 
5
#-------------------------------------------------
 
6
 
 
7
QT       += gui
 
8
TEMPLATE = lib
 
9
CONFIG += plugin
 
10
VERSION = 1.0.1
 
11
PLUGIN_NAME=list
 
12
 
 
13
GENERATED_DIR = ../../generated/plugin/list
 
14
# Use common project definitions.
 
15
include(../../common.pri)
 
16
 
 
17
# For plugins
 
18
INCLUDEPATH    += ../../librecad/src/plugins
 
19
 
 
20
SOURCES += list.cpp
 
21
 
 
22
HEADERS += list.h
 
23
 
 
24
 
 
25
# DLLDESTDIR = ../../unix/resources/plugins/
 
26
win32 {
 
27
        DLLDESTDIR = ../../windows/resources/plugins
 
28
        TARGET = $$PLUGIN_NAME
 
29
}
 
30
unix {
 
31
    macx { 
 
32
        TARGET = ../../LibreCAD.app/Contents/Resources/plugins/$$PLUGIN_NAME
 
33
    }
 
34
    else { 
 
35
        TARGET = ../../unix/resources/plugins/$$PLUGIN_NAME
 
36
    }
 
37
}
 
38