summaryrefslogtreecommitdiff
path: root/src/components/formatters
diff options
context:
space:
mode:
authorIvo Stoilov (GitHub) <istoilov@luxoft.com>2017-01-12 19:21:46 +0200
committerIvo Stoilov (GitHub) <istoilov@luxoft.com>2017-01-16 13:16:03 +0200
commit329f40d3045c523f9379ecde83d0c4a7c7de0fd6 (patch)
tree0524cc1a259e46b7209ac524e0c47acc9c7e9141 /src/components/formatters
parent0d9c2776edbb0b50bbf878c563cb80df398986ed (diff)
downloadsdl_core-329f40d3045c523f9379ecde83d0c4a7c7de0fd6.tar.gz
Fix component dependencies
Fix dependencies for parallel build Enable parallel build on Travis Related tasks APPLINK-30588 APPLINK-30973
Diffstat (limited to 'src/components/formatters')
-rw-r--r--src/components/formatters/CMakeLists.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/components/formatters/CMakeLists.txt b/src/components/formatters/CMakeLists.txt
index 02a337e278..ffd6f333e5 100644
--- a/src/components/formatters/CMakeLists.txt
+++ b/src/components/formatters/CMakeLists.txt
@@ -45,8 +45,14 @@ set(PATHS
${CMAKE_CURRENT_SOURCE_DIR}/src
)
+set (LIBRARIES
+ Utils
+ SmartObjects
+)
+
collect_sources(SOURCES "${PATHS}")
-add_library(formatters ${SOURCES})
+add_library("formatters" ${SOURCES})
+target_link_libraries("formatters" "${LIBRARIES}")
if(BUILD_TESTS)
add_subdirectory(test)