diff options
| author | ruki <[email protected]> | 2016-02-25 08:28:43 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2016-02-25 08:28:43 +0800 |
| commit | 89a6ea4c9726a726346b4b42198ef19c222015d3 (patch) | |
| tree | 7e981caa22119b5343e7d59af6be35bc5cc1de41 | |
| parent | 2717cbcfc0d3c1d6726c8b8512b53f31edd1d72d (diff) | |
add header for tasks
| -rwxr-xr-x | xmake/core/tasks/config.lua | 22 | ||||
| -rwxr-xr-x | xmake/core/tasks/create.lua | 22 | ||||
| -rwxr-xr-x | xmake/core/tasks/global.lua | 22 | ||||
| -rwxr-xr-x | xmake/core/tasks/install.lua | 22 | ||||
| -rwxr-xr-x | xmake/core/tasks/lua.lua | 22 | ||||
| -rwxr-xr-x | xmake/core/tasks/package.lua | 22 | ||||
| -rwxr-xr-x | xmake/core/tasks/run.lua | 22 | ||||
| -rwxr-xr-x | xmake/core/tasks/uninstall.lua | 22 | ||||
| -rwxr-xr-x | xmake/plugins/doxygen.lua | 22 | ||||
| -rwxr-xr-x | xmake/plugins/macro.lua | 22 |
10 files changed, 220 insertions, 0 deletions
diff --git a/xmake/core/tasks/config.lua b/xmake/core/tasks/config.lua index 6921c1c81..f5dfbb1e8 100755 --- a/xmake/core/tasks/config.lua +++ b/xmake/core/tasks/config.lua @@ -1,3 +1,25 @@ +--!The Automatic Cross-platform Build Tool +-- +-- 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) 2009 - 2015, ruki All rights reserved. +-- +-- @author ruki +-- @file config.lua +-- + -- define task task("config") diff --git a/xmake/core/tasks/create.lua b/xmake/core/tasks/create.lua index f5d500cc3..5feea2a7b 100755 --- a/xmake/core/tasks/create.lua +++ b/xmake/core/tasks/create.lua @@ -1,3 +1,25 @@ +--!The Automatic Cross-platform Build Tool +-- +-- 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) 2009 - 2015, ruki All rights reserved. +-- +-- @author ruki +-- @file create.lua +-- + -- define task task("create") diff --git a/xmake/core/tasks/global.lua b/xmake/core/tasks/global.lua index 45b0bbc5c..c388d7e59 100755 --- a/xmake/core/tasks/global.lua +++ b/xmake/core/tasks/global.lua @@ -1,3 +1,25 @@ +--!The Automatic Cross-platform Build Tool +-- +-- 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) 2009 - 2015, ruki All rights reserved. +-- +-- @author ruki +-- @file global.lua +-- + -- define task task("global") diff --git a/xmake/core/tasks/install.lua b/xmake/core/tasks/install.lua index a8cef2137..ce43c37a2 100755 --- a/xmake/core/tasks/install.lua +++ b/xmake/core/tasks/install.lua @@ -1,3 +1,25 @@ +--!The Automatic Cross-platform Build Tool +-- +-- 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) 2009 - 2015, ruki All rights reserved. +-- +-- @author ruki +-- @file install.lua +-- + -- define task task("install") diff --git a/xmake/core/tasks/lua.lua b/xmake/core/tasks/lua.lua index 22aac6eea..97a0fb567 100755 --- a/xmake/core/tasks/lua.lua +++ b/xmake/core/tasks/lua.lua @@ -1,3 +1,25 @@ +--!The Automatic Cross-platform Build Tool +-- +-- 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) 2009 - 2015, ruki All rights reserved. +-- +-- @author ruki +-- @file lua.lua +-- + -- define task task("lua") diff --git a/xmake/core/tasks/package.lua b/xmake/core/tasks/package.lua index 3bdf35f10..574e111d8 100755 --- a/xmake/core/tasks/package.lua +++ b/xmake/core/tasks/package.lua @@ -1,3 +1,25 @@ +--!The Automatic Cross-platform Build Tool +-- +-- 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) 2009 - 2015, ruki All rights reserved. +-- +-- @author ruki +-- @file package.lua +-- + -- define task task("package") diff --git a/xmake/core/tasks/run.lua b/xmake/core/tasks/run.lua index a0b7f4dab..6533507ce 100755 --- a/xmake/core/tasks/run.lua +++ b/xmake/core/tasks/run.lua @@ -1,3 +1,25 @@ +--!The Automatic Cross-platform Build Tool +-- +-- 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) 2009 - 2015, ruki All rights reserved. +-- +-- @author ruki +-- @file run.lua +-- + -- define task task("run") diff --git a/xmake/core/tasks/uninstall.lua b/xmake/core/tasks/uninstall.lua index b576a7c02..1861bc704 100755 --- a/xmake/core/tasks/uninstall.lua +++ b/xmake/core/tasks/uninstall.lua @@ -1,3 +1,25 @@ +--!The Automatic Cross-platform Build Tool +-- +-- 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) 2009 - 2015, ruki All rights reserved. +-- +-- @author ruki +-- @file uninstall.lua +-- + -- define task task("uninstall") diff --git a/xmake/plugins/doxygen.lua b/xmake/plugins/doxygen.lua index 2388efbd8..b325fcd54 100755 --- a/xmake/plugins/doxygen.lua +++ b/xmake/plugins/doxygen.lua @@ -1,3 +1,25 @@ +--!The Automatic Cross-platform Build Tool +-- +-- 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) 2009 - 2015, ruki All rights reserved. +-- +-- @author ruki +-- @file doxygen.lua +-- + -- define task task("doxygen") diff --git a/xmake/plugins/macro.lua b/xmake/plugins/macro.lua index 60ae15e58..16442f281 100755 --- a/xmake/plugins/macro.lua +++ b/xmake/plugins/macro.lua @@ -1,3 +1,25 @@ +--!The Automatic Cross-platform Build Tool +-- +-- 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) 2009 - 2015, ruki All rights reserved. +-- +-- @author ruki +-- @file macro.lua +-- + -- define task task("macro") |
