Browse Source

fix(cmake): fix platform extensions for windows

fixes #4860
reviewable/pr4861/r1
sudden6 8 years ago
parent
commit
7ad68e2f43
No known key found for this signature in database
GPG Key ID: 279509B499E032B9
  1. 2
      cmake/Dependencies.cmake

2
cmake/Dependencies.cmake

@ -197,7 +197,7 @@ if (X11_FOUND AND XSS_FOUND) @@ -197,7 +197,7 @@ if (X11_FOUND AND XSS_FOUND)
endif()
if (PLATFORM_EXTENSIONS)
if (${APPLE_EXT} OR ${X11_EXT})
if (${APPLE_EXT} OR ${X11_EXT} OR WIN32)
add_definitions(
-DQTOX_PLATFORM_EXT
)

Loading…
Cancel
Save