Skip to content

Commit

Permalink
Preliminary support for Planewave
Browse files Browse the repository at this point in the history
  • Loading branch information
knro committed Sep 21, 2023
1 parent d6da449 commit baf7236
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down
4 changes: 4 additions & 0 deletions drivers.xml
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,10 @@
<driver name="PMC8">indi_pmc8_telescope</driver>
<version>0.5</version>
</device>
<device label="Planewave" manufacturer="Planewave Instruments">
<driver name="Planewave">indi_planewave_telescope</driver>
<version>0.1</version>
</device>
</devGroup>
<devGroup group="Focusers">
<device label="Focuser Simulator" manufacturer="Simulator">
Expand Down
8 changes: 8 additions & 0 deletions drivers/telescope/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit baf7236

Please sign in to comment.