Change the library name of NN Runtime to `neuralnetworks`
authorjiseob.jang <jiseob.jang@samsung.com>
Wed, 28 Mar 2018 10:08:42 +0000 (19:08 +0900)
committer최형규/동작제어Lab(SR)/Senior Engineer/삼성전자 <hk0110.choi@samsung.com>
Wed, 28 Mar 2018 13:10:17 +0000 (22:10 +0900)
This commit changes the library name of NN Runtime to `neuralnetworks`.

Signed-off-by: jiseob.jang <jiseob.jang@samsung.com>
src/runtime/ref/nn/runtime/CMakeLists.txt

index b692508..fa521eb 100644 (file)
@@ -50,3 +50,6 @@ SET (SAMPLE_SRCS sample/main.cc
                  sample/simple_model.cpp)
 add_executable(runtime_sample_run ${SAMPLE_SRCS})
 target_link_libraries(runtime_sample_run ${LIB_RUNTIME} runtime_ref_common)
+
+# we need the library name to be 'neuralnetworks' and this will do the trick
+set_target_properties(${LIB_RUNTIME} PROPERTIES OUTPUT_NAME neuralnetworks)