From baf72368722c9ab3b3e925a474c7eb0f89f8876b Mon Sep 17 00:00:00 2001 From: Jasem Mutlaq Date: Thu, 21 Sep 2023 09:57:52 +0300 Subject: [PATCH] Preliminary support for Planewave --- CMakeLists.txt | 2 ++ drivers.xml | 4 ++++ drivers/telescope/CMakeLists.txt | 8 ++++++++ 3 files changed, 14 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index b6c54c12ee..f0b17252fa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -381,6 +381,8 @@ endif() if(INDI_BUILD_DRIVERS OR INDI_BUILD_CLIENT OR INDI_BUILD_QT5_CLIENT) install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/libs/json.h + ${CMAKE_CURRENT_SOURCE_DIR}/libs/httplib.h + ${CMAKE_CURRENT_SOURCE_DIR}/libs/inicpp.h ${CMAKE_CURRENT_BINARY_DIR}/indiversion.h DESTINATION ${INCLUDE_INSTALL_DIR}/libindi COMPONENT Devel ) diff --git a/drivers.xml b/drivers.xml index d5d0d7c9b2..bbeef1c254 100644 --- a/drivers.xml +++ b/drivers.xml @@ -303,6 +303,10 @@ indi_pmc8_telescope 0.5 + + indi_planewave_telescope + 0.1 + diff --git a/drivers/telescope/CMakeLists.txt b/drivers/telescope/CMakeLists.txt index 017677beb5..331a30d84e 100644 --- a/drivers/telescope/CMakeLists.txt +++ b/drivers/telescope/CMakeLists.txt @@ -257,3 +257,11 @@ add_executable(indi_skywatcherAltAzMount target_link_libraries(indi_skywatcherAltAzMount AlignmentDriver indidriver) install(TARGETS indi_skywatcherAltAzMount RUNTIME DESTINATION bin) + +# ########## Planewave Mount ############## +add_executable(indi_planewave_telescope + planewave_mount.cpp) + +target_link_libraries(indi_planewave_telescope indidriver) + +install(TARGETS indi_planewave_telescope RUNTIME DESTINATION bin)