From d9d7dd31ea5eb23f9ed9aac2625e8ab7fca0aba1 Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Wed, 11 Mar 2015 19:05:37 +0100 Subject: [PATCH] fix linker error: undefined references to openddl_parser. Signed-off-by: Kim Kulling --- tools/assimp_cmd/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/assimp_cmd/CMakeLists.txt b/tools/assimp_cmd/CMakeLists.txt index b549f9b10..78b3139ee 100644 --- a/tools/assimp_cmd/CMakeLists.txt +++ b/tools/assimp_cmd/CMakeLists.txt @@ -28,7 +28,7 @@ IF( WIN32 ) MAIN_DEPENDENCY assimp) ENDIF( WIN32 ) -TARGET_LINK_LIBRARIES( assimp_cmd assimp ${ZLIB_LIBRARIES}) +TARGET_LINK_LIBRARIES( assimp_cmd assimp ${ZLIB_LIBRARIES} openddl_parser) SET_TARGET_PROPERTIES( assimp_cmd PROPERTIES OUTPUT_NAME assimp )