added DistributionChart2D.cpp

This commit is contained in:
2023-06-27 20:45:28 +08:00
parent 5a7ea1675f
commit ab79a77b50
4 changed files with 377 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
macro(cm_example_project project_name)
target_link_libraries(${project_name} PRIVATE CMCore CMPlatform)
target_link_libraries(${project_name} PRIVATE CMCore CMPlatform CMUtil)
if(UNIX)
target_link_libraries(${project_name} PRIVATE dl)
@@ -53,4 +53,7 @@ cm_example_project(OSFontList)
target_link_libraries(OSFontList PRIVATE CMUtil)
add_executable(RuntimeAssetManagerTest RuntimeAssetManagerTest.cpp RuntimeAssetManager.h RAM_TestClass.h RAM_TestClass.cpp)
cm_example_project(RuntimeAssetManagerTest)
cm_example_project(RuntimeAssetManagerTest)
add_executable(DistributionChart2D DistributionChart2D.cpp)
cm_example_project(DistributionChart2D)