blob: 157cda21b2396df5c279a6cbd15ce7f11248483d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
add_subdirectory(site-packages)
install( FILES parc_uncrustify.cfg DESTINATION ${CMAKE_INSTALL_PREFIX}/etc )
macro(AddLongBowPythonScript scriptFile)
configure_file(${ARGV0}.py ${ARGV0} @ONLY)
install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/${ARGV0} DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
endmacro(AddLongBowPythonScript)
set(ScriptList
longbow-doxygen-report
longbow-generate-about
longbow-preprocess
longbow-code
longbow-complexity-report
longbow-coverage-report
longbow-bytearray
longbow-ansigcov
longbow-name-report
longbow-size-report
longbow-style-report
longbow-test-run
longbow-test-suite
longbow-vocabulary-report
)
foreach(script ${ScriptList})
AddLongBowPythonScript(${script})
endforeach()
|