diff options
author | Marco Bubke <marco.bubke@qt.io> | 2017-01-16 12:58:41 +0100 |
---|---|---|
committer | Marco Bubke <marco.bubke@qt.io> | 2017-01-16 18:21:17 +0000 |
commit | 7dbd869e5b63fa599eb299655542243922db0844 (patch) | |
tree | 4d511b9580ccd2db20edede5a1a7e04c286ab8d8 /src/plugins/cpptools/cpptoolsunittestfiles.pri | |
parent | 99f2c07403d15686448b878e45890510435a2ad0 (diff) | |
download | qt-creator-7dbd869e5b63fa599eb299655542243922db0844.tar.gz |
Fix exports for shared libraries
We use "shared" to define a shared library and not dll.
Change-Id: Ia97ebd0042a7ef0f33eadaa448d9a44b42331ad1
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io>
Diffstat (limited to 'src/plugins/cpptools/cpptoolsunittestfiles.pri')
-rw-r--r-- | src/plugins/cpptools/cpptoolsunittestfiles.pri | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cpptools/cpptoolsunittestfiles.pri b/src/plugins/cpptools/cpptoolsunittestfiles.pri index 1ed85c6c6a..317ba52b70 100644 --- a/src/plugins/cpptools/cpptoolsunittestfiles.pri +++ b/src/plugins/cpptools/cpptoolsunittestfiles.pri @@ -1,6 +1,6 @@ # 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. -contains(CONFIG, dll) { +shared { DEFINES += CPPTOOLS_LIBRARY DEFINES += PROJECTEXPLORER_LIBRARY } else { |