-
-
Notifications
You must be signed in to change notification settings - Fork 808
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from tboox/repo
update
- Loading branch information
Showing
185 changed files
with
3,831 additions
and
744 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ | |
# define ELF | ||
# define EXTERN_ASM | ||
#else | ||
# define ELF # | ||
# define ELF // | ||
# define EXTERN_ASM _ | ||
#endif | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
|
||
-- the tbox package | ||
option("tbox") | ||
|
||
-- show menu | ||
set_showmenu(true) | ||
|
||
-- set category | ||
set_category("package") | ||
|
||
-- set description | ||
set_description("The tbox package") | ||
|
||
-- set language: c99, c++11 | ||
set_languages("c99", "cxx11") | ||
|
||
-- add defines to config.h if checking ok | ||
add_defines_h_if_ok("$(prefix)_PACKAGE_HAVE_TBOX") | ||
|
||
-- add links for checking | ||
add_links("tbox") | ||
|
||
-- add link directories | ||
add_linkdirs("lib/$(mode)/$(plat)/$(arch)") | ||
|
||
-- add c includes for checking | ||
add_cincludes("tbox/tbox.h") | ||
|
||
-- add include directories | ||
add_includedirs("inc/$(plat)", "inc") | ||
|
||
-- the tbox package | ||
option("tbox") | ||
|
||
-- show menu | ||
set_showmenu(true) | ||
|
||
-- set category | ||
set_category("package") | ||
|
||
-- set description | ||
set_description("The tbox package") | ||
|
||
-- set language: c99, c++11 | ||
set_languages("c99", "cxx11") | ||
|
||
-- add defines to config.h if checking ok | ||
add_defines_h_if_ok("$(prefix)_PACKAGE_HAVE_TBOX") | ||
|
||
-- add links for checking | ||
add_links("tbox") | ||
|
||
-- add link directories | ||
add_linkdirs("lib/$(mode)/$(plat)/$(arch)") | ||
|
||
-- add c includes for checking | ||
add_cincludes("tbox/tbox.h") | ||
|
||
-- add include directories | ||
add_includedirs("inc/$(plat)", "inc") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/*!The Make-like Build Utility based on Lua | ||
* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* Copyright (C) 2015 - 2017, TBOOX Open Source Group. | ||
* | ||
* @author ruki | ||
* @file prefix.h | ||
* | ||
*/ | ||
#ifndef XM_HASH_PREFIX_H | ||
#define XM_HASH_PREFIX_H | ||
|
||
/* ////////////////////////////////////////////////////////////////////////////////////// | ||
* includes | ||
*/ | ||
#include "../prefix.h" | ||
|
||
|
||
#endif | ||
|
||
|
Oops, something went wrong.