From bccaabd433d3c404140c9bd01f542680c3f77fd1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Vitaliy=20Cherepanov/SRR-AI=20Tools=20Lab/=2E/=EC=82=BC?= =?utf8?q?=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Tue, 15 May 2018 02:19:37 +0300 Subject: [PATCH] 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 --- contrib/nnc/CMakeLists.txt | 7 +++++++ contrib/nnc/src/main.cpp | 1 + 2 files changed, 8 insertions(+) create mode 100644 contrib/nnc/CMakeLists.txt create mode 100644 contrib/nnc/src/main.cpp 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; } -- 2.7.4