Skip to content

Commit 50d0c09

Browse files
committed
Merge pull request #440 from ffontaine/revert-438-master
Revert "Force static build of libraries "
2 parents c6ddbe6 + a9e48dd commit 50d0c09

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

MQTT/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ IF(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
3131
SET(OperatingSystem "Linux")
3232
ENDIF(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
3333

34-
ADD_LIBRARY(mqtt STATIC ${LIB} ${CORE})
34+
ADD_LIBRARY(mqtt ${LIB} ${CORE})

lua/src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ IF(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
1212
add_definitions(-DLUA_USE_LINUX)
1313
ENDIF(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
1414

15-
ADD_LIBRARY(lua STATIC ${LIB} ${CORE})
15+
ADD_LIBRARY(lua ${LIB} ${CORE})
1616
#ADD_EXECUTABLE(luaexec lua.c)
1717
#TARGET_LINK_LIBRARIES(luaexec lua m)
1818

sqlite/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ IF(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
1515
SET(OperatingSystem "Linux")
1616
ENDIF(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
1717

18-
ADD_LIBRARY(sqlite STATIC ${LIB})
18+
ADD_LIBRARY(sqlite ${LIB})

0 commit comments

Comments
 (0)