mirror of
https://github.com/ysoftdevs/gradle-training.git
synced 2026-03-21 08:39:29 +01:00
18 lines
257 B
Groovy
18 lines
257 B
Groovy
apply plugin: 'c'
|
|
|
|
sources {
|
|
main {
|
|
c {
|
|
source {
|
|
// Include just source, avoid including *.swp and other helper files
|
|
include "**/*.c"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
executables {
|
|
main {
|
|
}
|
|
}
|