Skip to content

Commit 8e62e2a

Browse files
committed
TEST
Signed-off-by: Maxime Gervais <gervais.maxime@gmail.com>
1 parent e6c82f6 commit 8e62e2a

11 files changed

Lines changed: 10 additions & 10 deletions

File tree

Project/GNU/CLI/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ mediaconch_SOURCES = \
4646
../../../Source/Checker/Checker.cpp \
4747
../../../Source/Checker/Path.cpp \
4848
../../../Source/IMSC1/IMSC1Plugin.cpp \
49-
../../../Source/ThirdParty/tfsxml/tfsxml.cpp
49+
../../../Source/ThirdParty/tfsxml/tfsxml_wrapper.cpp
5050

5151
#mediaconch_LDFLAGS = -no-undefined -version-info 0:0:0
5252
mediaconch_CPPFLAGS = $(XML_CFLAGS)

Project/GNU/Library/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ lib@MediaConchLib_LibName@_la_SOURCES = \
4343
../../../Source/Checker/Checker.cpp \
4444
../../../Source/Checker/Path.cpp \
4545
../../../Source/IMSC1/IMSC1Plugin.cpp \
46-
../../../Source/ThirdParty/tfsxml/tfsxml.cpp
46+
../../../Source/ThirdParty/tfsxml/tfsxml_wrapper.cpp
4747

4848
#lib@MediaConchLib_LibName@includedir = $(includedir)/MediaConch
4949
#lib@MediaConchLib_LibName@include_HEADERS = \

Project/GNU/Server/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ mediaconchd_SOURCES = \
4545
../../../Source/Checker/Checker.cpp \
4646
../../../Source/Checker/Path.cpp \
4747
../../../Source/IMSC1/IMSC1Plugin.cpp \
48-
../../../Source/ThirdParty/tfsxml/tfsxml.cpp
48+
../../../Source/ThirdParty/tfsxml/tfsxml_wrapper.cpp
4949

5050
#mediaconchd_LDFLAGS = -no-undefined -version-info 0:0:0
5151
mediaconchd_CPPFLAGS = $(XML_CFLAGS)

Project/MSVC2022/CLI/MediaConch.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
<ClCompile Include="..\..\..\Source\Checker\Checker.cpp" />
187187
<ClCompile Include="..\..\..\Source\Checker\Path.cpp" />
188188
<ClCompile Include="..\..\..\Source\IMSC1\IMSC1Plugin.cpp" />
189-
<ClCompile Include="..\..\..\Source\ThirdParty\tfsxml\tfsxml.cpp" />
189+
<ClCompile Include="..\..\..\Source\ThirdParty\tfsxml\tfsxml_wrapper.cpp" />
190190
<ClCompile Include="..\..\..\Source\ThirdParty\sqlite\sqlite3.c" />
191191
</ItemGroup>
192192
<ItemGroup>

Project/MSVC2022/DLL/MediaConch-DLL.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@
184184
<ClCompile Include="..\..\..\Source\Checker\Checker.cpp" />
185185
<ClCompile Include="..\..\..\Source\Checker\Path.cpp" />
186186
<ClCompile Include="..\..\..\Source\IMSC1\IMSC1Plugin.cpp" />
187-
<ClCompile Include="..\..\..\Source\ThirdParty\tfsxml\tfsxml.cpp" />
187+
<ClCompile Include="..\..\..\Source\ThirdParty\tfsxml\tfsxml_wrapper.cpp" />
188188
<ClCompile Include="..\..\..\Source\ThirdParty\sqlite\sqlite3.c" />
189189
</ItemGroup>
190190
<ItemGroup>

Project/MSVC2022/GUI/MediaConch_GUI.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@
225225
<ClCompile Include="..\..\..\Source\GUI\Qt\WebKitPage.cpp" />
226226
<ClCompile Include="..\..\..\Source\GUI\Qt\WebKitView.cpp" />
227227
<ClCompile Include="..\..\..\Source\GUI\Qt\workerfiles.cpp" />
228-
<ClCompile Include="..\..\..\Source\ThirdParty\tfsxml\tfsxml.cpp" />
228+
<ClCompile Include="..\..\..\Source\ThirdParty\tfsxml\tfsxml_wrapper.cpp" />
229229
<ClCompile Include="..\..\..\Source\ThirdParty\sqlite\sqlite3.c" />
230230
<ClCompile Include="_Automated\moc_commonwebwindow.cpp" />
231231
<ClCompile Include="_Automated\moc_helpwindow.cpp" />

Project/MSVC2022/Server/MediaConch-Server.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@
180180
<ClCompile Include="..\..\..\Source\Checker\Checker.cpp" />
181181
<ClCompile Include="..\..\..\Source\Checker\Path.cpp" />
182182
<ClCompile Include="..\..\..\Source\IMSC1\IMSC1Plugin.cpp" />
183-
<ClCompile Include="..\..\..\Source\ThirdParty\tfsxml\tfsxml.cpp" />
183+
<ClCompile Include="..\..\..\Source\ThirdParty\tfsxml\tfsxml_wrapper.cpp" />
184184
<ClCompile Include="..\..\..\Source\ThirdParty\sqlite\sqlite3.c" />
185185
</ItemGroup>
186186
<ItemGroup>

Project/Qt/MediaConch.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ SOURCES += ../../Source/Common/MediaConchLib.cpp \
7171
../../Source/Checker/Checker.cpp \
7272
../../Source/Checker/Path.cpp \
7373
../../Source/IMSC1/IMSC1Plugin.cpp \
74-
../../Source/ThirdParty/tfsxml/tfsxml.cpp \
74+
../../Source/ThirdParty/tfsxml/tfsxml_wrapper.cpp \
7575
../../Source/GUI/Qt/main.cpp \
7676
../../Source/GUI/Qt/commonwebwindow.cpp \
7777
../../Source/GUI/Qt/helpwindow.cpp \

Source/Lib/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ add_library(MediaConchLib
3737
../IMSC1/IMSC1Plugin.cpp
3838
../Checker/Checker.cpp
3939
../Checker/Path.cpp
40-
../ThirdParty/tfsxml/tfsxml.cpp
40+
../ThirdParty/tfsxml/tfsxml_wrapper.cpp
4141
MediaConchDLL.cpp
4242
Lib.cpp
4343
)

0 commit comments

Comments
 (0)