Qt, cmake: put the build dir before the source dir in the include path

this should prevent Visual Studio from picking up generated include
files which may be lying around in the source tree (as leftovers from
previous in-tree builds)

Change-Id: I2406c31bc0638eb13ed4b539ddc607512051033d
Reviewed-on: https://code.wireshark.org/review/9130
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Martin Kaiser 2015-06-25 09:44:58 -07:00 committed by Anders Broman
parent 534d1d5eae
commit 9dd21d9fab
1 changed files with 1 additions and 1 deletions

View File

@ -367,8 +367,8 @@ set(WIRESHARK_QT_TS
)
include_directories(
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
)
if (QT_VERSION EQUAL 5)