This commit is contained in:
HuYingzhuo(hugo/hyzboy) 2023-02-13 18:14:46 +08:00
commit 866796bf69

View File

@ -7,6 +7,8 @@ macro(cm_example_project project_name)
endif() endif()
IF(WIN32) IF(WIN32)
target_link_libraries(${project_name} PRIVATE ${HGL_MATH_LIB})
set_debugger_directory(${project_name} ${CMAKE_CURRENT_SOURCE_DIR}) set_debugger_directory(${project_name} ${CMAKE_CURRENT_SOURCE_DIR})
target_sources(${project_name} PRIVATE ${CM_MANIFEST}) target_sources(${project_name} PRIVATE ${CM_MANIFEST})
@ -42,3 +44,4 @@ cm_example_project(CreateBinaryH)
add_executable(NormalCompressTest NormalCompressTest.cpp) add_executable(NormalCompressTest NormalCompressTest.cpp)
CM_EXAMPLE_PROJECT(NormalCompressTest) CM_EXAMPLE_PROJECT(NormalCompressTest)