Merge branch 'devel/master' into tizen
[platform/core/uifw/dali-demo.git] / build / tizen / demo / CMakeLists.txt
index ac3c3f5..5368493 100644 (file)
@@ -6,13 +6,24 @@ SET(DEMO_SRCS
   ${DEMO_SRCS}
   "${ROOT_SRC_DIR}/shared/resources-location.cpp"
   "${ROOT_SRC_DIR}/shared/dali-table-view.cpp"
+  "${ROOT_SRC_DIR}/shared/bubble-animator.cpp"
 )
 
-IF(ANDROID)
+IF(WIN32)
+  SET(DEMO_SRCS
+    ${DEMO_SRCS}
+    "${ROOT_SRC_DIR}/shared/execute-process-win.cpp"
+  )
+ELSEIF(ANDROID)
   SET(DEMO_SRCS
     ${DEMO_SRCS}
     "${ROOT_SRC_DIR}/shared/execute-process-android.cpp"
   )
+ELSEIF(TIZEN)
+  SET(DEMO_SRCS
+    ${DEMO_SRCS}
+    "${ROOT_SRC_DIR}/shared/execute-process-tizen.cpp"
+  )
 ELSE()
   SET(DEMO_SRCS
     ${DEMO_SRCS}
@@ -26,7 +37,7 @@ ELSE()
   ADD_EXECUTABLE(${PROJECT_NAME} ${DEMO_SRCS})
 ENDIF()
 
-TARGET_LINK_LIBRARIES(${PROJECT_NAME} ${REQUIRED_PKGS_LDFLAGS} -pie)
+TARGET_LINK_LIBRARIES(${PROJECT_NAME} ${REQUIRED_LIBS})
 
 INSTALL(TARGETS ${PROJECT_NAME} DESTINATION ${BINDIR})