Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_targets.lua')
-rw-r--r--tests/test_targets.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_targets.lua b/tests/test_targets.lua
index 794826e..4e250dc 100644
--- a/tests/test_targets.lua
+++ b/tests/test_targets.lua
@@ -314,7 +314,7 @@
function T.targets.SharedLib_Linux_Build_MacOSX()
cfg.kind = "SharedLib"
result = premake.gettarget(cfg, "build", "linux", "macosx")
- test.isequal([[../bin/libMyProject.so]], result.fullpath)
+ test.isequal([[../bin/libMyProject.dylib]], result.fullpath)
end
function T.targets.SharedLib_Linux_Link_Windows()
@@ -332,7 +332,7 @@
function T.targets.SharedLib_Linux_Link_MacOSX()
cfg.kind = "SharedLib"
result = premake.gettarget(cfg, "link", "linux", "macosx")
- test.isequal([[../bin/libMyProject.so]], result.fullpath)
+ test.isequal([[../bin/libMyProject.dylib]], result.fullpath)
end