Skip to content

Commit 5396cff

Browse files
cmake: don't dictate how to build the libraries
1 parent 71a0647 commit 5396cff

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Source/bluetooth/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ option(BLUETOOTH_AUDIO_SUPPORT "Include audio sink/source support" OFF)
3535

3636
find_package(Bluez5UtilHeaders REQUIRED)
3737

38-
add_library(${TARGET} SHARED
38+
add_library(${TARGET}
3939
HCISocket.cpp
4040
UUID.cpp
4141
Definitions.cpp

Source/bluetooth/audio/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ set(PUBLIC_HEADERS
4646
bluetooth_audio.h
4747
)
4848

49-
add_library(${TARGET} SHARED
49+
add_library(${TARGET}
5050
SDPSocket.cpp
5151
SDPProfile.cpp
5252
AVDTPSocket.cpp

Source/bluetooth/gatt/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ set(PUBLIC_HEADERS
3434
bluetooth_gatt.h
3535
)
3636

37-
add_library(${TARGET} SHARED
37+
add_library(${TARGET}
3838
GATTSocket.cpp
3939
GATTProfile.cpp
4040
)

Source/broadcast/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
2929

3030
find_package(NXCLIENT QUIET)
3131

32-
add_library(${TARGET} SHARED
32+
add_library(${TARGET}
3333
ProgramTable.cpp
3434
Definitions.cpp
3535
TunerAdministrator.cpp

0 commit comments

Comments
 (0)