Cygwin: Move Cygwin-specific paths to the cygwin platform

This commit is contained in:
Chuck Atkins
2017-03-16 06:04:29 -04:00
parent 2a8c2af4d4
commit 0b668e52a9
2 changed files with 10 additions and 6 deletions

View File

@@ -62,3 +62,13 @@ set(CMAKE_FIND_LIBRARY_SUFFIXES ".dll.a" ".a")
set(CMAKE_SHARED_LIBRARY_NAME_WITH_VERSION 1)
include(Platform/UnixPaths)
# Windows API on Cygwin
list(APPEND CMAKE_SYSTEM_INCLUDE_PATH
/usr/include/w32api
)
# Windows API on Cygwin
list(APPEND CMAKE_SYSTEM_LIBRARY_PATH
/usr/lib/w32api
)

View File

@@ -50,17 +50,11 @@ list(APPEND CMAKE_SYSTEM_PREFIX_PATH
# List common include file locations not under the common prefixes.
list(APPEND CMAKE_SYSTEM_INCLUDE_PATH
# Windows API on Cygwin
/usr/include/w32api
# X11
/usr/include/X11
)
list(APPEND CMAKE_SYSTEM_LIBRARY_PATH
# Windows API on Cygwin
/usr/lib/w32api
# X11
/usr/lib/X11
)