-
-
Notifications
You must be signed in to change notification settings - Fork 374
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wrong entry in .gitignore caused .cmake files in cmake directory to b…
…e ignored
- Loading branch information
Showing
2 changed files
with
21 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,7 +1,6 @@ | ||
# Files generated by cmake | ||
CMakeFiles | ||
Makefile | ||
*.cmake | ||
CMakeCache.txt | ||
lib | ||
|
||
|
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,21 @@ | ||
# | ||
# Find Sphinx | ||
# Find Sphinx executable to build documentation | ||
# Source: http://ericscottbarr.com/blog/2012/03/sphinx-and-cmake-beautiful-documentation-for-c-projects/ | ||
# | ||
# Daniel Kastl 03/2013 | ||
# | ||
|
||
find_program(SPHINX_EXECUTABLE NAMES sphinx-build | ||
HINTS | ||
$ENV{SPHINX_DIR} | ||
PATH_SUFFIXES bin\r\n DOC "Sphinx documentation generator" | ||
) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(Sphinx DEFAULT_MSG\r\n SPHINX_EXECUTABLE | ||
) | ||
|
||
mark_as_advanced( | ||
SPHINX_EXECUTABLE | ||
) |