summaryrefslogtreecommitdiff
path: root/xmake/plugins/project/vstudio/vs2005.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2016-08-06 13:02:28 +0800
committerruki <[email protected]>2016-08-06 13:02:28 +0800
commitce3b9ada065d09d2d771061b20f07fc1d661c648 (patch)
tree9add68684c5e7383f69db71d1903ee9352dd7537 /xmake/plugins/project/vstudio/vs2005.lua
parente4cb396b6c4b33932d5f953b9cf20fbf22231ce4 (diff)
add vs2005 and vs2008 empty plugin
Diffstat (limited to 'xmake/plugins/project/vstudio/vs2005.lua')
-rwxr-xr-xxmake/plugins/project/vstudio/vs2005.lua35
1 files changed, 35 insertions, 0 deletions
diff --git a/xmake/plugins/project/vstudio/vs2005.lua b/xmake/plugins/project/vstudio/vs2005.lua
new file mode 100755
index 000000000..14a6808ad
--- /dev/null
+++ b/xmake/plugins/project/vstudio/vs2005.lua
@@ -0,0 +1,35 @@
+--!The Make-like Build Utility based on Lua
+--
+-- XMake is free software; you can redistribute it and/or modify
+-- it under the terms of the GNU Lesser General Public License as published by
+-- the Free Software Foundation; either version 2.1 of the License, or
+-- (at your option) any later version.
+--
+-- XMake is distributed in the hope that it will be useful,
+-- but WITHOUT ANY WARRANTY; without even the implied warranty of
+-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+-- GNU Lesser General Public License for more details.
+--
+-- You should have received a copy of the GNU Lesser General Public License
+-- along with XMake;
+-- If not, see <a href="http://www.gnu.org/licenses/"> http://www.gnu.org/licenses/</a>
+--
+-- Copyright (C) 2015 - 2016, ruki All rights reserved.
+--
+-- @author ruki
+-- @file vs2005.lua
+--
+
+-- imports
+import("core.project.project")
+
+-- make
+function make(outputdir)
+
+ -- enter project directory
+ local olddir = os.cd(project.directory())
+
+
+ -- leave project directory
+ os.cd(olddir)
+end