Skip to content

Commit daaceae

Browse files
committed
Normalize Launcher file extensions to lowercase
1 parent 226a3e2 commit daaceae

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
4242

4343
#pragma warning(disable : 4514)
44-
#include "BFISH.H"
44+
#include "BFISH.h"
4545
#include <string.h>
4646
#include <assert.h>
4747

Core/Tools/Launcher/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
add_subdirectory(DatGen)
22

33
set(LAUNCHER_SRC
4-
"BFISH.CPP"
5-
"BFISH.H"
4+
"BFISH.cpp"
5+
"BFISH.h"
66
"configfile.cpp"
77
"configfile.h"
88
"dialog.cpp"

Core/Tools/Launcher/DatGen/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
set(DATGEN_SRC
22
"DatGen.cpp"
3-
"../BFISH.CPP"
4-
"../BFISH.H"
3+
"../BFISH.cpp"
4+
"../BFISH.h"
55
"../Toolkit/Debug/DebugPrint.cpp"
66
"../Toolkit/Debug/DebugPrint.h"
77
)

Core/Tools/Launcher/DatGen/DatGen.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#include <assert.h>
2424
#include <stdlib.h>
2525
#include <stdio.h>
26-
#include "BFISH.H"
26+
#include "BFISH.h"
2727
#include <Debug/DebugPrint.h>
2828

2929
void __cdecl doIt(void);

0 commit comments

Comments
 (0)