forked from etternagame/etterna
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1,636 changed files
with
306,349 additions
and
209,945 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Desktop (please complete the following information):** | ||
- OS: [e.g. iOS] | ||
- Version [e.g. 22] | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
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,6 @@ | ||
[submodule "extern/SQLiteCpp"] | ||
path = extern/SQLiteCpp | ||
url = https://github.com/etternagame/SQLiteCpp | ||
[submodule "extern/json"] | ||
path = extern/json | ||
url = https://github.com/etternagame/json.git |
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 |
---|---|---|
@@ -0,0 +1,70 @@ | ||
find_library(LibUV_LIBRARY | ||
NAMES uv | ||
) | ||
mark_as_advanced(LibUV_LIBRARY) | ||
|
||
find_path(LibUV_INCLUDE_DIR | ||
NAMES uv.h | ||
) | ||
mark_as_advanced(LibUV_INCLUDE_DIR) | ||
|
||
#----------------------------------------------------------------------------- | ||
# Extract version number if possible. | ||
set(_LibUV_H_REGEX "#[ \t]*define[ \t]+UV_VERSION_(MAJOR|MINOR|PATCH)[ \t]+[0-9]+") | ||
if(LibUV_INCLUDE_DIR AND EXISTS "${LibUV_INCLUDE_DIR}/uv-version.h") | ||
file(STRINGS "${LibUV_INCLUDE_DIR}/uv-version.h" _LibUV_H REGEX "${_LibUV_H_REGEX}") | ||
elseif(LibUV_INCLUDE_DIR AND EXISTS "${LibUV_INCLUDE_DIR}/uv.h") | ||
file(STRINGS "${LibUV_INCLUDE_DIR}/uv.h" _LibUV_H REGEX "${_LibUV_H_REGEX}") | ||
else() | ||
set(_LibUV_H "") | ||
endif() | ||
foreach(c MAJOR MINOR PATCH) | ||
if(_LibUV_H MATCHES "#[ \t]*define[ \t]+UV_VERSION_${c}[ \t]+([0-9]+)") | ||
set(_LibUV_VERSION_${c} "${CMAKE_MATCH_1}") | ||
else() | ||
unset(_LibUV_VERSION_${c}) | ||
endif() | ||
endforeach() | ||
if(DEFINED _LibUV_VERSION_MAJOR AND DEFINED _LibUV_VERSION_MINOR) | ||
set(LibUV_VERSION_MAJOR "${_LibUV_VERSION_MAJOR}") | ||
set(LibUV_VERSION_MINOR "${_LibUV_VERSION_MINOR}") | ||
set(LibUV_VERSION "${LibUV_VERSION_MAJOR}.${LibUV_VERSION_MINOR}") | ||
if(DEFINED _LibUV_VERSION_PATCH) | ||
set(LibUV_VERSION_PATCH "${_LibUV_VERSION_PATCH}") | ||
set(LibUV_VERSION "${LibUV_VERSION}.${LibUV_VERSION_PATCH}") | ||
else() | ||
unset(LibUV_VERSION_PATCH) | ||
endif() | ||
else() | ||
set(LibUV_VERSION_MAJOR "") | ||
set(LibUV_VERSION_MINOR "") | ||
set(LibUV_VERSION_PATCH "") | ||
set(LibUV_VERSION "") | ||
endif() | ||
unset(_LibUV_VERSION_MAJOR) | ||
unset(_LibUV_VERSION_MINOR) | ||
unset(_LibUV_VERSION_PATCH) | ||
unset(_LibUV_H_REGEX) | ||
unset(_LibUV_H) | ||
|
||
#----------------------------------------------------------------------------- | ||
find_package_handle_standard_args(LibUV | ||
FOUND_VAR LibUV_FOUND | ||
REQUIRED_VARS LibUV_LIBRARY LibUV_INCLUDE_DIR | ||
VERSION_VAR LibUV_VERSION | ||
) | ||
set(LIBUV_FOUND ${LibUV_FOUND}) | ||
|
||
#----------------------------------------------------------------------------- | ||
# Provide documented result variables and targets. | ||
if(LibUV_FOUND) | ||
set(LibUV_INCLUDE_DIRS ${LibUV_INCLUDE_DIR}) | ||
set(LibUV_LIBRARIES ${LibUV_LIBRARY}) | ||
if(NOT TARGET LibUV::LibUV) | ||
add_library(LibUV::LibUV UNKNOWN IMPORTED) | ||
set_target_properties(LibUV::LibUV PROPERTIES | ||
IMPORTED_LOCATION "${LibUV_LIBRARY}" | ||
INTERFACE_INCLUDE_DIRECTORIES "${LibUV_INCLUDE_DIRS}" | ||
) | ||
endif() | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
find_path(LIBMAD_INCLUDE_DIR mad.h) | ||
|
||
find_library(LIBMAD_LIBRARY mad) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(LIBMAD DEFAULT_MSG LIBMAD_LIBRARY LIBMAD_INCLUDE_DIR) | ||
|
||
mark_as_advanced(LIBMAD_LIBRARY LIBMAD_INCLUDE_DIR) | ||
|
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
Oops, something went wrong.