mirror of
https://github.com/ysoftdevs/gradle-training.git
synced 2026-04-29 19:58:28 +02:00
19 lines
287 B
Groovy
19 lines
287 B
Groovy
apply plugin: 'c'
|
|
apply plugin: 'visual-studio'
|
|
|
|
sources {
|
|
main {
|
|
c {
|
|
source {
|
|
// Include just source, avoid including *.swp and other helper files
|
|
include "**/*.c"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
executables {
|
|
main {
|
|
}
|
|
}
|