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:
authorstarkos <none@none>2009-05-29 23:00:14 +0400
committerstarkos <none@none>2009-05-29 23:00:14 +0400
commit939c3c023640568e4d4e4aedd5d92611ba4e21bc (patch)
tree82c90359067e5080d1a6373fd3abde9452d34d47 /tests/test_targets.lua
parent9a64d401a70a5475e825bcf7ced15ec8a8dbdcb4 (diff)
Bug 2790865: SharedLib on OSX (actually a patch by Ash Berlin)
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