Skip to content

Commit 0b628dd

Browse files
authored
[CORE] Fix VC6 compile error in max2w3d pluglib (#859)
1 parent ce756df commit 0b628dd

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

Core/Tools/WW3D/pluglib/CMakeLists.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,10 @@ set_target_properties(core_pluglib PROPERTIES OUTPUT_NAME pluglib)
5858

5959
target_sources(core_pluglib PRIVATE ${PLUGLIB_SRC})
6060

61-
target_link_libraries(core_pluglib PRIVATE maxsdk)
61+
target_link_libraries(core_pluglib PUBLIC
62+
core_utility
63+
)
64+
65+
target_link_libraries(core_pluglib PRIVATE
66+
maxsdk
67+
)

Core/Tools/WW3D/pluglib/Vector.H

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959
#include <string.h>
6060
#include <stddef.h>
6161
#include <stdlib.h>
62+
#include <Utility/stdint_adapter.h>
6263

6364

6465
/**************************************************************************

0 commit comments

Comments
 (0)