From: Michael D. Lowis Date: Wed, 18 Mar 2015 01:16:28 +0000 (-0400) Subject: Deleted unused files and folders X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=b75a067b50d68a2c435721bd60efa05faa5cfd97;p=projs%2Fopts.git Deleted unused files and folders --- diff --git a/docs/DUMMY b/docs/DUMMY deleted file mode 100644 index e69de29..0000000 diff --git a/premake4.lua b/premake4.lua deleted file mode 100644 index a00321c..0000000 --- a/premake4.lua +++ /dev/null @@ -1,48 +0,0 @@ -------------------------------------------------------------------------------- --- Option Parsing Library Configuration -------------------------------------------------------------------------------- -solution "OPTS Option Parsing Library" -configurations { "Release" } -targetdir "build" - ---------------------------------------------------------------------------------- ----- Opts - A simple option parsing library ---------------------------------------------------------------------------------- -project "opts" - kind "SharedLib" - language "C" - location "build" - files { "source/**.*" } - -project "opts-tests" - kind "ConsoleApp" - language "C++" - location "build" - links { "UnitTest++", "opts" } - includedirs { "source/", "tools/UnitTest++/**" } - files { "tests/**.c*", "source/**.c*" } - postbuildcommands { "./opts-tests" } - -------------------------------------------------------------------------------- --- UnitTest++ - A C++ unit testing library -------------------------------------------------------------------------------- -project "UnitTest++" - kind "SharedLib" - language "C++" - location "build" - files { - "tools/UnitTest++/src/*.*", - } - if os.is "windows" then - files { "tools/UnitTest++/src/Win32/**.*" } - else - files { "tools/UnitTest++/src/Posix/**.*" } - end - -------------------------------------------------------------------------------- --- Miscellaneous -------------------------------------------------------------------------------- -if _ACTION == "clean" then - os.rmdir("build") -end -