From 972c4764f0c0e294b56ea600682fb3d5a4af692e Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Wed, 10 Jun 2020 07:12:43 -0700 Subject: [PATCH] Interop test fix --- IDEHelper/Tests/BeefProj.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/IDEHelper/Tests/BeefProj.toml b/IDEHelper/Tests/BeefProj.toml index 5af01a28..f25eee21 100644 --- a/IDEHelper/Tests/BeefProj.toml +++ b/IDEHelper/Tests/BeefProj.toml @@ -7,3 +7,11 @@ StartupObject = "Tests.Program" [Configs.Test.Win64] BeefLibType = "DynamicDebug" +LibPaths = ["$(ProjectDir)/CLib/x64/Debug/CLib.lib"] + +[Configs.Test.Win32] +LibPaths = ["$(ProjectDir)/CLib/Debug/CLib.lib"] + +[Configs.Test.Linux64] +OtherLinkFlags = "$(LinkFlags) $(ProjectDir)/CLib/main.o -Wl,--export-dynamic" +PreBuildCmds = ["/usr/bin/c++ $(ProjectDir)/CLib/main.cpp -c -o $(ProjectDir)/CLib/main.o"]