mirror of
https://github.com/ysoftdevs/gradle-training.git
synced 2026-03-18 07:14:14 +01: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 {
|
|
}
|
|
}
|