Skip to content

Commit 312f635

Browse files
committed
buildscripts: stop handling Windows PDBs
1 parent 0680dfc commit 312f635

File tree

2 files changed

+1
-14
lines changed

2 files changed

+1
-14
lines changed

MinieLibrary/build.gradle

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ ext {
1919
//libbulletjmeUrl = 'file:///c:\\users\\sgold\\My%20Documents\\NetBeansProjects\\Libbulletjme\\dist\\' // to test a local build
2020

2121
jarType = ''
22-
pdbWindows64 = ''
2322
if (rootProject.hasProperty('btdebug')) {
2423
// -Pbtdebug specified on the command line
2524

@@ -36,7 +35,6 @@ ext {
3635
configureAndroidBtfs('')
3736
configureDesktopBtfs('')
3837
btfWindows64 = 'DebugSp'
39-
pdbWindows64 = 'DebugSp'
4038
metadata = 'debug' + jmeTarget
4139

4240
} else { // -Pbtdebug specified, but not -Pdp nor -Ppdb64
@@ -161,8 +159,6 @@ processResources.dependsOn((btfMacOSX_ARM64 == '' ? 'clean' : 'download') + 'Mac
161159
processResources.dependsOn((btfWindows32 == '' ? 'clean' : 'download') + 'Windows32')
162160
processResources.dependsOn((btfWindows64 == '' ? 'clean' : 'download') + 'Windows64')
163161

164-
assemble.dependsOn((pdbWindows64 == '' ? 'clean' : 'download') + 'PDBs')
165-
166162
// Register tasks to download native libraries (from GitHub, typically)
167163

168164
tasks.register('downloadAndroid_ARM7', Download) {
@@ -231,12 +227,6 @@ tasks.register('downloadWindows64', Download) {
231227
overwrite false
232228
}
233229

234-
tasks.register('downloadPDBs', Download) {
235-
src libbulletjmeUrl + "Windows64${pdbWindows64}_bulletjme.pdb"
236-
dest file('bulletjme.pdb')
237-
overwrite false
238-
}
239-
240230
// Register cleanup tasks:
241231

242232
clean.dependsOn('cleanAndroid_ARM7', 'cleanAndroid_ARM8', 'cleanAndroid_X86',

common.gradle

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ configurations.configureEach {
5050

5151
// Register cleanup tasks:
5252

53-
clean.dependsOn('cleanDLLs', 'cleanDyLibs', 'cleanLogs', 'cleanPDBs', \
53+
clean.dependsOn('cleanDLLs', 'cleanDyLibs', 'cleanLogs', \
5454
'cleanSandbox', 'cleanSOs')
5555

5656
tasks.register('cleanDLLs', Delete) { // extracted Windows native libraries
@@ -62,9 +62,6 @@ tasks.register('cleanDyLibs', Delete) { // extracted macOS native libraries
6262
tasks.register('cleanLogs', Delete) { // JVM crash logs
6363
delete fileTree(dir: '.', include: 'hs_err_pid*.log')
6464
}
65-
tasks.register('cleanPDBs', Delete) { // Windows program database files
66-
delete fileTree(dir: '.', include: '*.pdb')
67-
}
6865
tasks.register('cleanSandbox', Delete) { // Acorus sandbox
6966
delete 'Written Assets'
7067
}

0 commit comments

Comments
 (0)