2016-12-05 15:24:09 +01:00
|
|
|
# Currently there are no tests for the project explorer plugin, but we include
|
|
|
|
|
# headers from it that needs to have the export/import adapted for Windows.
|
2015-11-25 11:07:35 +01:00
|
|
|
contains(CONFIG, dll) {
|
|
|
|
|
DEFINES += CPPTOOLS_LIBRARY
|
2016-12-05 15:24:09 +01:00
|
|
|
DEFINES += PROJECTEXPLORER_LIBRARY
|
2015-11-25 11:07:35 +01:00
|
|
|
} else {
|
|
|
|
|
DEFINES += CPPTOOLS_STATIC_LIBRARY
|
2016-12-05 15:24:09 +01:00
|
|
|
DEFINES += PROJECTEXPLORER_STATIC_LIBRARY
|
2015-11-25 11:07:35 +01:00
|
|
|
}
|
|
|
|
|
|
2016-01-25 16:38:28 +01:00
|
|
|
HEADERS += \
|
|
|
|
|
$$PWD/cppprojectfile.h \
|
|
|
|
|
$$PWD/senddocumenttracker.h \
|
2016-08-04 15:26:53 +02:00
|
|
|
$$PWD/projectpart.h \
|
2016-11-29 17:32:34 +01:00
|
|
|
$$PWD/compileroptionsbuilder.h \
|
2016-12-05 15:24:09 +01:00
|
|
|
$$PWD/cppprojectfilecategorizer.h \
|
|
|
|
|
$$PWD/cppbaseprojectpartbuilder.h \
|
|
|
|
|
$$PWD/projectinfo.h \
|
|
|
|
|
$$PWD/cppprojectinterface.h \
|
|
|
|
|
|
2015-09-28 17:42:43 +02:00
|
|
|
|
2016-01-25 16:38:28 +01:00
|
|
|
SOURCES += \
|
|
|
|
|
$$PWD/cppprojectfile.cpp \
|
2016-08-04 15:26:53 +02:00
|
|
|
$$PWD/senddocumenttracker.cpp \
|
|
|
|
|
$$PWD/projectpart.cpp \
|
2016-11-29 17:32:34 +01:00
|
|
|
$$PWD/compileroptionsbuilder.cpp \
|
2016-12-05 15:24:09 +01:00
|
|
|
$$PWD/cppprojectfilecategorizer.cpp \
|
|
|
|
|
$$PWD/cppbaseprojectpartbuilder.cpp \
|
|
|
|
|
$$PWD/projectinfo.cpp \
|