X-Git-Url: http://git.osdn.jp/view?a=blobdiff_plain;f=test%2Fpremake4.lua;fp=test%2Fpremake4.lua;h=b0258943382cb41a4a4e85102707beaa4e49d6fc;hb=632b23d73aed325778873b495fd6c92632ec1f94;hp=a7644cfef011316161f02ab31613a60a91d8f818;hpb=1c78f8bbdfe52be741185762123fba2c169d738a;p=meshio%2Fmeshio.git diff --git a/test/premake4.lua b/test/premake4.lua index a7644cf..b025894 100644 --- a/test/premake4.lua +++ b/test/premake4.lua @@ -2,61 +2,6 @@ solution "meshio_test" configurations { "Debug", "Release" } --- A project defines one build target -project "meshio_test" ---kind "WindowedApp" -kind "ConsoleApp" ---kind "SharedLib" ---kind "StaticLib" -language "C++" -files { "**.h", "**.cpp" } -flags { - --"Unicode", - "StaticRuntime", -} -buildoptions { - "/wd4996", -} -includedirs { - "../include", - "T:/vc/gtest-1.5.0/include", -} -defines {} -linkoptions {} -libdirs {} -links { - "meshio", -} - -configuration "Debug" -do - defines { "DEBUG" } - flags { "Symbols" } - targetdir "debug" - linkoptions { - --"/NODEFAULTLIB:msvcprtd.lib", - --"/NODEFAULTLIB:libcmtd.lib", - } - libdirs { - "../Debug", - "T:/vc/gtest-1.5.0/msvc/gtest/Debug", - } - links { - "gtestd", - } -end - -configuration "Release" -do - defines { "NDEBUG" } - flags { "Optimize" } - targetdir "release" - libdirs { - "../Release", - "T:/vc/gtest-1.5.0/msvc/gtest/Release", - } - links { - "gtest", - } -end +dofile "meshio_test.lua" +dofile "../meshio.lua"