mirror of
https://github.com/ysoftdevs/gradle-training.git
synced 2026-03-30 05:42:15 +02:00
add c language example
This commit is contained in:
17
07-c-language/build.gradle
Normal file
17
07-c-language/build.gradle
Normal file
@@ -0,0 +1,17 @@
|
||||
apply plugin: 'c'
|
||||
|
||||
sources {
|
||||
main {
|
||||
c {
|
||||
source {
|
||||
// Include just source, avoid including *.swp and other helper files
|
||||
include "**/*.c"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
executables {
|
||||
main {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user