-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
34 lines (29 loc) · 850 Bytes
/
build.gradle
File metadata and controls
34 lines (29 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
plugins {
id "com.github.c64lib.retro-assembler" version "1.6.0"
id "com.github.hierynomus.license" version "0.16.1"
}
repositories {
mavenCentral()
}
license {
header = file("LICENSE")
excludes([".ra"])
include "**/*.asm"
mapping {
asm = 'SLASHSTAR_STYLE'
}
}
task licenseFormatAsm(type: com.hierynomus.gradle.license.tasks.LicenseFormat) {
source = fileTree(dir: ".").include("**/*.asm").exclude(".ra")
}
task licenseAsm(type: com.hierynomus.gradle.license.tasks.LicenseCheck) {
source = fileTree(dir: ".").include("**/*.asm").exclude(".ra")
}
licenseFormat.dependsOn licenseFormatAsm
retroProject {
dialect = "KickAssembler"
dialectVersion = "5.25"
libDirs = [".ra/deps/c64lib"]
srcDirs = ["lib"]
libFromGitHub "c64lib/64spec", "0.7.0pr"
}