added unit test console app to devel package for Building Block. 34/138134/1 accepted/tizen/4.0/unified/20170816.010339 accepted/tizen/4.0/unified/20170816.014357 accepted/tizen/4.0/unified/20170828.223716 accepted/tizen/unified/20170711.181309 submit/tizen/20170711.071902 submit/tizen_4.0/20170811.094300 submit/tizen_4.0/20170814.115522 submit/tizen_4.0/20170828.100002 submit/tizen_4.0_unified/20170814.115522
authorHyihong Chae <hh.chae@samsung.com>
Tue, 11 Jul 2017 07:13:31 +0000 (16:13 +0900)
committerHyihong Chae <hh.chae@samsung.com>
Tue, 11 Jul 2017 07:14:44 +0000 (16:14 +0900)
Change-Id: Ice3170ffe9860009b7c27727f2735496c41eb870
Signed-off-by: HyiHong Chae <hh.chae@samsung.com>
packaging/capi-network-smartcard.spec
test/CMakeLists.txt

index 0dc809e..677bc1b 100755 (executable)
@@ -1,6 +1,6 @@
 Name:       capi-network-smartcard
 Summary:    A Smartcard library in Native API
-Version:    0.0.10
+Version:    0.0.11
 Release:    1
 Group:      Network & Connectivity/Smartcard
 License:    Apache-2.0
@@ -59,3 +59,4 @@ rm -rf %{buildroot}
 %{_includedir}/*.h
 %{_libdir}/pkgconfig/*.pc
 %{_libdir}/libcapi-network-smartcard.so
+%{_bindir}/smartcard_unit_test
\ No newline at end of file
index 474d37d..0d1f21e 100644 (file)
@@ -1,3 +1,5 @@
+PROJECT(smartcard_unit_test C)
+
 SET(fw_test "${fw_name}-test")
 
 INCLUDE(FindPkgConfig)
@@ -16,3 +18,5 @@ FOREACH(src ${sources})
     ADD_EXECUTABLE(${src_name} ${src})
     TARGET_LINK_LIBRARIES(${src_name} ${fw_name} ${${fw_test}_LDFLAGS})
 ENDFOREACH()
+
+INSTALL(TARGETS smartcard_unit_test RUNTIME DESTINATION bin/)