diff --git a/07-c-language/build.gradle b/07-c-language/build.gradle index ce50dc8..5245b70 100644 --- a/07-c-language/build.gradle +++ b/07-c-language/build.gradle @@ -1,17 +1,8 @@ apply plugin: 'c' -sources { - main { - c { - source { - // Include just source, avoid including *.swp and other helper files - include "**/*.c" - } - } +model { + components { + main(NativeExecutableSpec) {} } } -executables { - main { - } -}