lin
2025-02-25 a02983e50ab34c3e7366b27cdeca427a327faebd
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
35
apply plugin: 'c'
apply plugin: 'sdk-files'
apply plugin: 'windows-setup'
 
executables {
    avdLauncher {}
}
 
sources {
    avdLauncher {
        c {
            source {
                srcDir "src/source"
                include "**/*.c"
            }
        }
    }
}
 
sdk {
    windows {
        item( { getExeName("windows32AvdLauncherExecutable") } ) {
            into 'lib'
            name 'AVD Manager.exe'
            builtBy 'windows32AvdLauncherExecutable'
        }
    }
}
 
def getExeName(String name) {
    // binaries will return a set of binaries
    def binaries = executables.avdLauncher.binaries.matching { it.name == name }
    // calling .exeFile on the set returns an array with the result from each item in the set...
    return binaries.executableFile.get(0)
}