diff --git a/wpimath/CMakeLists.txt b/wpimath/CMakeLists.txt index 5ce44ecc316..65318d8272a 100644 --- a/wpimath/CMakeLists.txt +++ b/wpimath/CMakeLists.txt @@ -217,6 +217,19 @@ else() ) endif() +get_target_property(wpimath_sources wpimath SOURCES) +message("wpimath sources:") +foreach(wpimath_source ${wpimath_sources}) + message(" ${wpimath_source}") +endforeach() + +get_target_property(wpimath_interface_sources wpimath INTERFACE_SOURCES) +message("wpimath interface sources: '${wpimath_interface_sources}'") +message("wpimath interface sources:") +foreach(wpimath_interface_source ${wpimath_interface_sources}) + message(" ${wpimath_interface_source}") +endforeach() + set_property(TARGET wpimath PROPERTY FOLDER "libraries") target_compile_definitions(wpimath PRIVATE WPILIB_EXPORTS)