Skip to content

Commit c25061a

Browse files
committed
Renaming WPEFramework to Thunder
1 parent adad394 commit c25061a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+1090
-94
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ install_manifest.txt
1919
Makefile
2020
*/*/Makefile
2121
*/*/*/Makefile
22-
*/*/WPEFramework*Config.cmake
23-
*/*/WPEFramework*ConfigVersion.cmake
22+
*/*/Thunder*Config.cmake
23+
*/*/Thunder*ConfigVersion.cmake
2424
*.pc
2525
*.so.*
2626
*.so

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
cmake_minimum_required(VERSION 3.3)
2020
project(Libraries)
2121

22-
find_package(WPEFramework)
22+
find_package(Thunder)
2323

2424
if (BUILD_REFERENCE)
2525
add_definitions (-DBUILD_REFERENCE=${BUILD_REFERENCE})

Source/asconnector/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ find_package( systemd REQUIRED )
1616
find_package( udev REQUIRED )
1717

1818
Find Library for Tracing and JSON
19-
find_package(WPEFramework REQUIRED)
20-
find_package(WPEFrameworkMessaging REQUIRED)
19+
find_package(Thunder REQUIRED)
20+
find_package(ThunderMessaging REQUIRED)
2121

2222
# We require C++14
2323
set( CMAKE_CXX_STANDARD 14 )
@@ -62,7 +62,7 @@ add_executable(
6262

6363
target_link_libraries(
6464

65-
WPEFrameworkProtocols::WPEFrameworkProtocols
65+
ThunderProtocols::ThunderProtocols
6666

6767
${SYSTEMD_LIBRARIES}
6868

Source/bluetooth/BluetoothUtils.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
#include "BluetoothUtils.h"
2121

22-
namespace WPEFramework {
22+
namespace Thunder {
2323

2424
namespace Bluetooth {
2525

@@ -215,4 +215,4 @@ void BtUtilsBaswap(bdaddr_t* dst, const bdaddr_t* src)
215215

216216
} // namespace Bluetooth
217217

218-
} // namespace WPEFramework
218+
} // namespace Thunder

Source/bluetooth/BluetoothUtils.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
#include "Module.h"
2323

24-
namespace WPEFramework {
24+
namespace Thunder {
2525

2626
namespace Bluetooth {
2727

@@ -58,4 +58,4 @@ inline void BtUtilsHciFilterSetPtype(int t, struct hci_filter *f)
5858

5959
} // namespace Bluetooth
6060

61-
} // namespace WPEFramework
61+
} // namespace Thunder

Source/bluetooth/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
cmake_minimum_required(VERSION 3.3)
1919

20-
find_package(WPEFramework)
20+
find_package(Thunder)
2121
find_package(${NAMESPACE}Core REQUIRED)
2222
find_package(${NAMESPACE}Messaging REQUIRED)
2323
find_package(CompileSettingsDebug CONFIG REQUIRED)

Source/bluetooth/Definitions.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
#include "Module.h"
2121

22-
namespace WPEFramework {
22+
namespace Thunder {
2323

2424
namespace Bluetooth {
2525

@@ -113,5 +113,5 @@ namespace Bluetooth {
113113
return (pos->text != nullptr ? pos->text : _T("reserved"));
114114
}
115115

116-
} } // namespace WPEFramework::Bluetooth
116+
} } // namespace Thunder::Bluetooth
117117

Source/bluetooth/HCISocket.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
#include "HCISocket.h"
2121

22-
namespace WPEFramework {
22+
namespace Thunder {
2323

2424
ENUM_CONVERSION_BEGIN(Bluetooth::Address::type)
2525
{ Bluetooth::Address::BREDR_ADDRESS, _TXT(_T("bredr")) },

Source/bluetooth/HCISocket.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#include "UUID.h"
2424
#include "BluetoothUtils.h"
2525

26-
namespace WPEFramework {
26+
namespace Thunder {
2727

2828
namespace Bluetooth {
2929

@@ -1308,4 +1308,4 @@ POP_WARNING()
13081308

13091309
} // namespace Bluetooth
13101310

1311-
} // namespace WPEFramework
1311+
} // namespace Thunder

Source/bluetooth/UUID.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
#include "UUID.h"
2121

22-
namespace WPEFramework {
22+
namespace Thunder {
2323

2424
namespace Bluetooth {
2525

0 commit comments

Comments
 (0)