Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
old_macaon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Franck Dary
old_macaon
Commits
a3ca7515
Commit
a3ca7515
authored
6 years ago
by
Franck Dary
Browse files
Options
Downloads
Patches
Plain Diff
Set up Doxygen
parent
ac654e14
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
CMakeLists.txt
+11
-0
11 additions, 0 deletions
CMakeLists.txt
docs/config
+2474
-0
2474 additions, 0 deletions
docs/config
docs/doxygen.css
+1383
-0
1383 additions, 0 deletions
docs/doxygen.css
with
3869 additions
and
0 deletions
.gitignore
+
1
−
0
View file @
a3ca7515
build
build
docs/html
This diff is collapsed.
Click to expand it.
CMakeLists.txt
+
11
−
0
View file @
a3ca7515
...
@@ -3,10 +3,13 @@ project(macaon)
...
@@ -3,10 +3,13 @@ project(macaon)
list
(
APPEND CMAKE_MODULE_PATH
"
${
CMAKE_CURRENT_LIST_DIR
}
/cmake/Modules"
)
list
(
APPEND CMAKE_MODULE_PATH
"
${
CMAKE_CURRENT_LIST_DIR
}
/cmake/Modules"
)
option
(
BUILD_DOC
"Build documentation"
ON
)
find_package
(
dynet REQUIRED
)
find_package
(
dynet REQUIRED
)
find_package
(
eigen3 REQUIRED
)
find_package
(
eigen3 REQUIRED
)
find_package
(
Boost REQUIRED COMPONENTS program_options
)
find_package
(
Boost REQUIRED COMPONENTS program_options
)
find_package
(
fasttext REQUIRED
)
find_package
(
fasttext REQUIRED
)
find_package
(
Doxygen REQUIRED
)
set
(
CMAKE_VERBOSE_MAKEFILE 0
)
set
(
CMAKE_VERBOSE_MAKEFILE 0
)
set
(
CMAKE_CXX_STANDARD 11
)
set
(
CMAKE_CXX_STANDARD 11
)
...
@@ -31,3 +34,11 @@ add_subdirectory(tape_machine)
...
@@ -31,3 +34,11 @@ add_subdirectory(tape_machine)
add_subdirectory
(
trainer
)
add_subdirectory
(
trainer
)
add_subdirectory
(
decoder
)
add_subdirectory
(
decoder
)
add_subdirectory
(
MLP
)
add_subdirectory
(
MLP
)
set
(
DOXYGEN_IN
${
CMAKE_CURRENT_SOURCE_DIR
}
/docs/config
)
add_custom_target
(
doc_doxygen ALL
COMMAND
${
DOXYGEN_EXECUTABLE
}
${
DOXYGEN_IN
}
WORKING_DIRECTORY
${
CMAKE_CURRENT_BINARY_DIR
}
COMMENT
"Generating documentation with Doxygen"
VERBATIM
)
This diff is collapsed.
Click to expand it.
docs/config
0 → 100644
+
2474
−
0
View file @
a3ca7515
This diff is collapsed.
Click to expand it.
docs/doxygen.css
0 → 100644
+
1383
−
0
View file @
a3ca7515
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment