Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
eccf2e53
Commit
eccf2e53
authored
May 24, 2018
by
Simon Giesecke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Problem: cygwin build defines ZMQ_HAVE_WINDOWS
Solution: do not check for windows.h on cygwin
parent
c5d422c0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
CMakeLists.txt
CMakeLists.txt
+5
-1
No files found.
CMakeLists.txt
View file @
eccf2e53
...
...
@@ -227,7 +227,11 @@ include (CMakeDependentOption)
include
(
CheckCXXSymbolExists
)
include
(
CheckSymbolExists
)
check_include_files
(
windows.h ZMQ_HAVE_WINDOWS
)
if
(
NOT CYGWIN
)
# TODO cannot we simply do 'if (WIN32) set(ZMQ_HAVE_WINDOWS ON)' or similar?
check_include_files
(
windows.h ZMQ_HAVE_WINDOWS
)
endif
()
if
(
CMAKE_SYSTEM_NAME STREQUAL
"WindowsStore"
AND CMAKE_SYSTEM_VERSION STREQUAL
"10.0"
)
SET
(
ZMQ_HAVE_WINDOWS_UWP ON
)
ADD_DEFINITIONS
(
-D_WIN32_WINNT=_WIN32_WINNT_WIN10
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment