]> git.mdlowis.com Git - projs/opts.git/commitdiff
Deleted unused files and folders
authorMichael D. Lowis <mike@mdlowis.com>
Wed, 18 Mar 2015 01:16:28 +0000 (21:16 -0400)
committerMichael D. Lowis <mike@mdlowis.com>
Wed, 18 Mar 2015 01:16:28 +0000 (21:16 -0400)
docs/DUMMY [deleted file]
premake4.lua [deleted file]

diff --git a/docs/DUMMY b/docs/DUMMY
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/premake4.lua b/premake4.lua
deleted file mode 100644 (file)
index a00321c..0000000
+++ /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
-