To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Revision:

root / common / common.pro @ 49:a6a71d1c7eb7

History | View | Annotate | Download (366 Bytes)

1
TEMPLATE = lib
2
TARGET = 
3

    
4
CONFIG += staticlib
5

    
6
HEADERS += EditDistance.h Objects.h Matcher.h TypeRegistrar.h FeatureFileIndex.h
7
SOURCES += EditDistance.cpp Objects.cpp Matcher.cpp TypeRegistrar.cpp FeatureFileIndex.cpp
8

    
9
exists(./platform.pri) {
10
    include(./platform.pri)
11
}
12
!exists(./platform.pri) {
13
    exists(../platform.pri) {
14
	include(../platform.pri)
15
    }
16
}
17