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
2540e1a6
Unverified
Commit
2540e1a6
authored
Jan 14, 2018
by
Constantin Rack
Committed by
GitHub
Jan 14, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2888 from minrk/fix-cmake
Fix inclusion of cmake files in dists
parents
e2ed5a35
35c4b68a
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
10 deletions
+5
-10
CMakeLists.txt
CMakeLists.txt
+3
-4
Makefile.am
Makefile.am
+0
-2
Makefile.am
builds/Makefile.am
+2
-4
FindSodium.cmake
builds/cmake/Modules/FindSodium.cmake
+0
-0
ZeroMQConfig.cmake.in
builds/cmake/ZeroMQConfig.cmake.in
+0
-0
No files found.
CMakeLists.txt
View file @
2540e1a6
...
...
@@ -4,6 +4,8 @@ cmake_minimum_required (VERSION 2.8.12)
project
(
ZeroMQ
)
list
(
INSERT CMAKE_MODULE_PATH 0
"
${
CMAKE_CURRENT_SOURCE_DIR
}
"
)
set
(
ZMQ_CMAKE_MODULES_DIR
${
CMAKE_CURRENT_SOURCE_DIR
}
/builds/cmake/Modules
)
list
(
APPEND CMAKE_MODULE_PATH
${
ZMQ_CMAKE_MODULES_DIR
}
)
include
(
CheckCXXCompilerFlag
)
CHECK_CXX_COMPILER_FLAG
(
"-std=gnu++11"
COMPILER_SUPPORTS_CXX11
)
...
...
@@ -165,9 +167,6 @@ else ()
message
(
FATAL_ERROR
"Invalid polling method"
)
endif
()
set
(
ZMQ_CMAKE_MODULES_DIR
${
CMAKE_CURRENT_SOURCE_DIR
}
/builds/cmake/Modules
)
list
(
APPEND CMAKE_MODULE_PATH
${
ZMQ_CMAKE_MODULES_DIR
}
)
include
(
TestZMQVersion
)
if
(
NOT CMAKE_CROSSCOMPILING
)
include
(
ZMQSourceRunChecks
)
...
...
@@ -1002,7 +1001,7 @@ if (NOT CMAKE_VERSION VERSION_LESS 3.0)
export
(
EXPORT
${
PROJECT_NAME
}
-targets
FILE
"
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
PROJECT_NAME
}
Targets.cmake"
)
endif
()
configure_package_config_file
(
${
PROJECT_NAME
}
Config.cmake.in
configure_package_config_file
(
builds/cmake/
${
PROJECT_NAME
}
Config.cmake.in
"
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
PROJECT_NAME
}
Config.cmake"
INSTALL_DESTINATION
${
ZEROMQ_CMAKECONFIG_INSTALL_DIR
}
)
write_basic_package_version_file
(
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
PROJECT_NAME
}
ConfigVersion.cmake
...
...
Makefile.am
View file @
2540e1a6
...
...
@@ -867,9 +867,7 @@ XFAIL_TESTS += test_ipc_wildcard \
endif
EXTRA_DIST
=
\
FindSodium.cmake
\
CMakeLists.txt
\
ZeroMQConfig.cmake.in
\
autogen.sh
\
version.sh
\
src/libzmq.pc.cmake.in
\
...
...
builds/Makefile.am
View file @
2540e1a6
...
...
@@ -16,12 +16,10 @@ EXTRA_DIST = \
mingw32/Makefile.mingw32
\
mingw32/platform.hpp
\
cmake/Modules
\
cmake/Modules/FindAsciiDoc.cmake
\
cmake/Modules/TestZMQVersion.cmake
\
cmake/Modules/ZMQSourceRunChecks.cmake
\
cmake/NSIS.template32.in
\
cmake/platform.hpp.in
\
cmake/NSIS.template64.in
\
cmake/ZeroMQConfig.cmake.in
\
cmake/platform.hpp.in
\
valgrind/valgrind.supp
\
valgrind/vg
\
nuget/readme.nuget
\
...
...
FindSodium.cmake
→
builds/cmake/Modules/
FindSodium.cmake
View file @
2540e1a6
File moved
ZeroMQConfig.cmake.in
→
builds/cmake/
ZeroMQConfig.cmake.in
View file @
2540e1a6
File moved
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