Skip to content

Commit 1d95e6c

Browse files
committed
added good version of ace
1 parent 776d05c commit 1d95e6c

File tree

401 files changed

+312722
-1211
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

401 files changed

+312722
-1211
lines changed

.gitignore

+1-3
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,4 @@ CF0/CF0.info
7474
*.includecache
7575
*.internal
7676
CMakeFiles/
77-
icarus_rising.tos
78-
79-
ace/
77+
icarus_rising.tos

ace/.codedocs

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# CodeDocs.xyz Configuration File
2+
#
3+
# Rename this example to '.codedocs' and put it in the root directory of your
4+
# repository. This file is optional, documentation will still be generated
5+
# without it using sensible defaults.
6+
7+
#---------------------------------------------------------------------------
8+
# CodeDocs Configuration
9+
#---------------------------------------------------------------------------
10+
11+
# Include the Doxygen configuration from another file.
12+
# The file must be a relative path with respect to the root of the repository.
13+
# If any of the options in this doxyfile include a path (ie, INPUT), these
14+
# paths will be considered relative to the root of the repository, not the
15+
# location of the DOXYFILE.
16+
17+
DOXYFILE = Doxyfile
18+
19+
# Specify external repository to link documentation with.
20+
# This is similar to Doxygen's TAGFILES option, but will automatically link to
21+
# tags of other repositories already using CodeDocs. List each repository to
22+
# link with by giving its location in the form of owner/repository.
23+
# For example:
24+
# TAGLINKS = doxygen/doxygen CodeDocs/osg
25+
# Note: these repositories must already be built on CodeDocs.
26+
27+
TAGLINKS =

ace/.gitattributes

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Explicit list for language for file extension
2+
*.h linguist-language=C
3+
*.c linguist-language=C

ace/.gitignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
.idea/
2+
**/.vscode/*
3+
ace\.code-workspace
4+
5+
build/
6+
lib/
7+
bin/
8+
9+
# Showcase
10+
showcase/showcase
11+
showcase/*.bmp
12+
showcase/memory\.log
13+
showcase/game\.log
14+
15+
# Tools
16+
tools/*/*.exe
17+
tools/*/*.png
18+
tools/*/*.bm
19+
tools/*/*.plt
20+
21+
*.dasm
22+
23+
showcase/NUL

0 commit comments

Comments
 (0)