add new cppcheck example with updated dockerfiles

This commit is contained in:
Thom Troy
2017-07-02 23:20:41 +01:00
parent 59159c4c38
commit ef0d61aa0e
16 changed files with 395 additions and 5 deletions

View File

@@ -0,0 +1,10 @@
# Set the project name
project (subproject2)
# Create a sources variable with a link to all cpp files to compile
set(SOURCES
main2.cpp
)
# Add an executable with the above sources
add_executable(${PROJECT_NAME} ${SOURCES})