Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion plotjuggler_app/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
option(EXE_STATIC "Link the PlotJuggler binary statically" OFF)

set (CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
Expand Down Expand Up @@ -119,7 +120,8 @@ target_link_libraries(plotjuggler
plotjuggler_base
plotjuggler_qwt
QCodeEditor
)
$<$<BOOL:${EXE_STATIC}>:-static-libgcc -static-libstdc++ -static>
)

if(COMPILING_WITH_CATKIN)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ set(${PROJECT_NAME}_source_files
exceptions/Exception.cpp
exceptions/LockedExternalAccessException.cpp
exceptions/NotEnoughMemoryException.cpp
FastCdr.rc
$<$<STREQUAL:$<TARGET_PROPERTY:${PROJECT_NAME},TYPE>,SHARED_LIBRARY>:FastCdr.rc>
)

configure_file(${PROJECT_SOURCE_DIR}/include/${PROJECT_NAME}/config.h.in
Expand Down
Loading