Skip to content

Commit

Permalink
Move software intern documentation to requirements engineering
Browse files Browse the repository at this point in the history
  • Loading branch information
renn0xtek9 committed May 7, 2024
1 parent 394784e commit 91aa4e3
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 16 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
build/*
documentation/*.bbl
documentation/*.blg
10 changes: 5 additions & 5 deletions documentation/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
INCLUDE (CreateLatexDocumentation)

SET (_software_intern_name "software-intern-development")
SET (SOFTWARE_INTERN_MAIN_TEX ${_software_intern_name}.tex)
SET (requirements_documents "requirements_document")
SET (SOFTWARE_INTERN_MAIN_TEX ${requirements_documents}.tex)
SET (SOFTWARE_INTERN_RESOURCES_FILES
${CMAKE_CURRENT_SOURCE_DIR}/resources/project_or_company_logo.png)
SET (SOFTWARE_INTERN_BIBLIOGRAPHY ${CMAKE_CURRENT_SOURCE_DIR}/library.bib)

CREATELATEXDOCUMENTAION (
"${_software_intern_name}" "${SOFTWARE_INTERN_MAIN_TEX}"
"${requirements_documents}" "${SOFTWARE_INTERN_MAIN_TEX}"
"${SOFTWARE_INTERN_RESOURCES_FILES}" "${SOFTWARE_INTERN_BIBLIOGRAPHY}")

ADD_CUSTOM_TARGET (
documentation
DEPENDS ${_software_intern_name}
COMMENT "Building documentation")
DEPENDS ${requirements_documents}
COMMENT "Building requirements documentation")
6 changes: 0 additions & 6 deletions documentation/README.md

This file was deleted.

8 changes: 4 additions & 4 deletions documentation/library.bib
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
%An article from a magazine or a journal
@article{uncleDT,
author = {Donald Trump},
title = {Making america great again},
journal = {International Journal of America's greatness},
@article{fooAuthor,
author = {Foo Bar},
title = {Some title},
journal = {International Journal of Something},
year = {2020},
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
\usepackage{algorithmic}
\usepackage{rotating}

\title{Software internal documentation}
\title{Requirements}
\author{Foo Ever}
\addbibresource{./library.bib} %define so to work with mendeley',
\setlength{\parindent}{0pt} % Avoid indentation on the first line',
Expand Down
6 changes: 6 additions & 0 deletions project/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,9 @@ ADD_TEST (
COMMAND gcovr -r .. --fail-under-line 1.0 --html --html-details -o index.html
WORKING_DIRECTORY ${CMAKE_BINARY_DIR})
SET_TESTS_PROPERTIES (code_coverage PROPERTIES FIXTURES_CLEANUP unit_tests)

ADD_TEST (
NAME benchmarking
COMMAND $<TARGET_FILE:probe_benchmark>
WORKING_DIRECTORY ${CMAKE_BINARY_DIR})
SET_TESTS_PROPERTIES (benchmarking PROPERTIES DEPENDS benchmark)

0 comments on commit 91aa4e3

Please sign in to comment.