From db64410bf47e895092c249b8fc9558226d64aedb Mon Sep 17 00:00:00 2001 From: Benjamin Lorenz Date: Sat, 28 Oct 2023 17:02:35 +0200 Subject: [PATCH] WIP: add -ljulia-internal for test_module until this is fixed upstream --- test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index f100613..cba8b17 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,7 +1,7 @@ include_directories(${CMAKE_SOURCE_DIR}/include) add_executable(test_module test_module.cpp) -target_link_libraries(test_module ${JLCXX_TARGET} ${Julia_LIBRARY}) +target_link_libraries(test_module ${JLCXX_TARGET} ${Julia_LIBRARY} -ljulia-internal) add_test(NAME test_module COMMAND test_module) add_executable(test_type_init test_type_init.cpp)