From 94ef9630d2106ab4027fc79a38456c300ae6317f Mon Sep 17 00:00:00 2001 From: hyzboy Date: Mon, 30 Jan 2023 10:00:34 +0800 Subject: [PATCH] added a new project that it's CreateBinaryH --- CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 99133dd..7e7ad97 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,6 +7,8 @@ macro(cm_example_project project_name) endif() IF(WIN32) + target_link_libraries(${project_name} PRIVATE ${HGL_MATH_LIB}) + set_debugger_directory(${project_name} ${CMAKE_CURRENT_SOURCE_DIR}) target_sources(${project_name} PRIVATE ${CM_MANIFEST}) @@ -36,4 +38,4 @@ add_executable(SplitStringTest SplitStringTest.cpp) cm_example_project(SplitStringTest) add_executable(CreateBinaryH CreateBinaryH.cpp) -cm_example_project(CreateBinaryH) \ No newline at end of file +cm_example_project(CreateBinaryH)