Skip to content

Commit

Permalink
Added DustManager Plugin for dust control (space-ros#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
namikxgithub authored and jasmeet0915 committed Sep 6, 2024
1 parent f3242dc commit 749fdfa
Show file tree
Hide file tree
Showing 11 changed files with 2,039 additions and 0 deletions.
25 changes: 25 additions & 0 deletions custom_gz_plugins/src/DayLightManager/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR)

if(POLICY CMP0100)
cmake_policy(SET CMP0100 NEW)
endif()

project(DayLightManager)

set(CMAKE_AUTOMOC ON)

find_package(gz-sim8 REQUIRED COMPONENTS gui)

QT5_ADD_RESOURCES(resources_RCC ${PROJECT_NAME}.qrc)

add_library(${PROJECT_NAME} SHARED
${PROJECT_NAME}.cc
${resources_RCC}
)
target_link_libraries(${PROJECT_NAME}
PRIVATE gz-sim8::gui
)

install(TARGETS ${PROJECT_NAME}
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
Loading

0 comments on commit 749fdfa

Please sign in to comment.