diff --git a/cameraserver/CMakeLists.txt b/cameraserver/CMakeLists.txt index 1a75ae48d0..769426a2e3 100644 --- a/cameraserver/CMakeLists.txt +++ b/cameraserver/CMakeLists.txt @@ -56,3 +56,5 @@ install(EXPORT cameraserver DESTINATION ${cameraserver_config_dir}) file(GLOB multiCameraServer_src multiCameraServer/src/main/native/cpp/*.cpp) add_executable(multiCameraServer ${multiCameraServer_src}) target_link_libraries(multiCameraServer cameraserver) + +set_property(TARGET multiCameraServer PROPERTY FOLDER "examples") diff --git a/cscore/CMakeLists.txt b/cscore/CMakeLists.txt index 805b3a5834..1a1ac229fa 100644 --- a/cscore/CMakeLists.txt +++ b/cscore/CMakeLists.txt @@ -52,6 +52,7 @@ foreach(example ${cscore_examples}) if(cscore_example_src) add_executable(cscore_${example} ${cscore_example_src}) target_link_libraries(cscore_${example} cscore) + set_property(TARGET cscore_${example} PROPERTY FOLDER "examples") endif() endforeach() diff --git a/wpiutil/CMakeLists.txt b/wpiutil/CMakeLists.txt index 720940c81a..bc09c1c3f6 100644 --- a/wpiutil/CMakeLists.txt +++ b/wpiutil/CMakeLists.txt @@ -140,6 +140,7 @@ foreach(example ${wpiutil_examples}) if(wpiutil_example_src) add_executable(wpiutil_${example} ${wpiutil_example_src}) target_link_libraries(wpiutil_${example} wpiutil) + set_property(TARGET wpiutil_${example} PROPERTY FOLDER "examples") endif() endforeach() @@ -148,6 +149,7 @@ if (UNIX AND NOT APPLE) else() set (LIBUTIL) endif() + file(GLOB netconsoleServer_src src/netconsoleServer/native/cpp/*.cpp) add_executable(netconsoleServer ${netconsoleServer_src}) target_link_libraries(netconsoleServer wpiutil ${LIBUTIL}) @@ -155,3 +157,6 @@ target_link_libraries(netconsoleServer wpiutil ${LIBUTIL}) file(GLOB netconsoleTee_src src/netconsoleTee/native/cpp/*.cpp) add_executable(netconsoleTee ${netconsoleTee_src}) target_link_libraries(netconsoleTee wpiutil) + +set_property(TARGET netconsoleServer PROPERTY FOLDER "examples") +set_property(TARGET netconsoleTee PROPERTY FOLDER "examples")