zeromq / pyzmq

PyZMQ: Python bindings for zeromq
http://zguide.zeromq.org/py:all
BSD 3-Clause "New" or "Revised" License
3.69k stars 637 forks source link

fix builds with cmake < 3.21 #1977

Closed minrk closed 5 months ago

minrk commented 5 months ago

file(COPY_FILE is new in 3.21, but we claim to support 3.14

use configure_file(...COPYONLY) instead, which does the same thing.