Newer
Older
# must be unique in a given SonarQube instance
sonar.projectKey=vf:project:develop
# --- optional properties ---
# defaults to project key
sonar.projectName=VirtualFluids_dev
# defaults to 'not provided'
#sonar.projectVersion=1.0
sonar.language=cxx
sonar.cxx.suffixes.sources=cpp,c,cxx,cu
sonar.cxx.suffixes.headers=h,hpp,hxx,cuh
# Path is relative to the sonar-project.properties file. Defaults to .
sonar.sources=./src
sonar.cxx.includeDirectories=./src
# Encoding of the source code. Default is default system encoding
sonar.sourceEncoding=UTF-8
sonar.cxx.coverage.reportPath=coverage/coverage.xml
sonar.cxx.cppcheck.reportPath=cppcheck.xml
sonar.cxx.clangtidy.reportPath=build/clangtidy.txt
sonar.cxx.jsonCompilationDatabase=build/compile_commands.json

Soeren Peters
committed
sonar.cxx.gcc.reportPath=build/gcc_warnings.txt
#sonar.cxx.valgrind.reportPath
sonar.cxx.funccomplexity.threshold=10
sonar.cxx.funcsize.threshold=20