From: Vitaliy Cherepanov/SRR-AI Tools Lab/./삼성전자 Date: Mon, 14 May 2018 23:19:37 +0000 (+0300) Subject: nnc: initial commit (#161) X-Git-Tag: nncc_backup~2695 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bccaabd433d3c404140c9bd01f542680c3f77fd1;p=platform%2Fcore%2Fml%2Fnnfw.git nnc: initial commit (#161) * tools nncc: compiler initial commit Create makefiles and main for compiler Signed-off-by: Vitaliy Cherepanov * tools nncc: compiler initial commit Move tools/nncc to contrib/tools/ Signed-off-by: Vitaliy Cherepanov * tools nncc: compiler initial commit code clean remove unused code Signed-off-by: Vitaliy Cherepanov * tools nncc: compiler initial commit Move contrib/tools/nncc to contrib/nnc rename cl to nnc Signed-off-by: Vitaliy Cherepanov * tools nnc: compiler initial commit private nncc_core library target link Signed-off-by: Vitaliy Cherepanov --- diff --git a/contrib/nnc/CMakeLists.txt b/contrib/nnc/CMakeLists.txt new file mode 100644 index 0000000..ddf14b4 --- /dev/null +++ b/contrib/nnc/CMakeLists.txt @@ -0,0 +1,7 @@ +project(nnc) + +file(GLOB_RECURSE CL_SRC src/*.cpp include/*.h) + +add_executable(nnc ${CL_SRC}) +target_link_libraries(nnc PRIVATE nncc_core) +target_include_directories(nnc PUBLIC include) diff --git a/contrib/nnc/src/main.cpp b/contrib/nnc/src/main.cpp new file mode 100644 index 0000000..44e82e2 --- /dev/null +++ b/contrib/nnc/src/main.cpp @@ -0,0 +1 @@ +int main(int argc, char *argv[]) { return 0; }