2021-03-30 14:15:05 +00:00
|
|
|
--- CMakeLists.txt.orig 2021-03-30 15:28:36.956587995 +0200
|
|
|
|
+++ CMakeLists.txt 2021-03-30 15:29:45.719326832 +0200
|
2021-02-01 22:56:09 +00:00
|
|
|
@@ -106,24 +106,6 @@
|
2020-05-25 18:30:53 +00:00
|
|
|
|
|
|
|
|
2021-02-01 22:56:09 +00:00
|
|
|
#
|
2020-05-25 18:30:53 +00:00
|
|
|
-# build and install hamlib locally so it can be referenced by the
|
|
|
|
-# WSJT-X build
|
|
|
|
-#
|
|
|
|
-ExternalProject_Add (hamlib
|
|
|
|
- GIT_REPOSITORY ${hamlib_repo}
|
|
|
|
- GIT_TAG ${hamlib_TAG}
|
2021-02-01 22:56:09 +00:00
|
|
|
- GIT_SHALLOW False
|
2021-03-30 14:15:05 +00:00
|
|
|
- URL ${CMAKE_CURRENT_SOURCE_DIR}/src/${__hamlib_upstream}.tar.gz
|
2020-05-25 18:30:53 +00:00
|
|
|
- URL_HASH MD5=${hamlib_md5sum}
|
2020-07-21 20:51:12 +00:00
|
|
|
- #UPDATE_COMMAND ${CMAKE_COMMAND} -E env "[ -f ./bootstrap ] && ./bootstrap"
|
2020-05-25 18:30:53 +00:00
|
|
|
- PATCH_COMMAND ${PATCH_EXECUTABLE} -p1 -N < ${CMAKE_CURRENT_SOURCE_DIR}/hamlib.patch
|
|
|
|
- CONFIGURE_COMMAND <SOURCE_DIR>/configure --prefix=<INSTALL_DIR> --disable-shared --enable-static --without-cxx-binding ${EXTRA_FLAGS} # LIBUSB_LIBS=${USB_LIBRARY}
|
|
|
|
- BUILD_COMMAND $(MAKE) all V=1 # $(MAKE) is ExternalProject_Add() magic to do recursive make
|
|
|
|
- INSTALL_COMMAND $(MAKE) install-strip V=1 DESTDIR=""
|
|
|
|
- STEP_TARGETS update install
|
|
|
|
- )
|
|
|
|
-
|
2021-02-01 22:56:09 +00:00
|
|
|
-#
|
2020-05-25 18:30:53 +00:00
|
|
|
# custom target to make a hamlib source tarball
|
|
|
|
#
|
2021-02-01 22:56:09 +00:00
|
|
|
add_custom_target (hamlib_sources
|
|
|
|
@@ -161,7 +143,6 @@
|
2020-05-25 18:30:53 +00:00
|
|
|
# build and optionally install WSJT-X using the hamlib package built
|
|
|
|
# above
|
|
|
|
#
|
|
|
|
-ExternalProject_Get_Property (hamlib INSTALL_DIR)
|
|
|
|
ExternalProject_Add (wsjtx
|
|
|
|
GIT_REPOSITORY ${wsjtx_repo}
|
|
|
|
GIT_TAG ${WSJTX_TAG}
|
2021-02-01 22:56:09 +00:00
|
|
|
@@ -186,14 +167,8 @@
|
2020-05-25 18:30:53 +00:00
|
|
|
DEPENDEES build
|
|
|
|
)
|
|
|
|
|
|
|
|
-set_target_properties (hamlib PROPERTIES EXCLUDE_FROM_ALL 1)
|
|
|
|
set_target_properties (wsjtx PROPERTIES EXCLUDE_FROM_ALL 1)
|
|
|
|
|
2021-02-01 22:56:09 +00:00
|
|
|
-add_dependencies (wsjtx-configure hamlib-install)
|
|
|
|
-add_dependencies (wsjtx-build hamlib-install)
|
|
|
|
-add_dependencies (wsjtx-install hamlib-install)
|
|
|
|
-add_dependencies (wsjtx-package hamlib-install)
|
|
|
|
-
|
|
|
|
# export traditional targets
|
|
|
|
add_custom_target (build ALL DEPENDS wsjtx-build)
|
|
|
|
add_custom_target (install DEPENDS wsjtx-install)
|