nnc: initial commit (#161)
authorVitaliy Cherepanov/SRR-AI Tools Lab/./삼성전자 <v.cherepanov@samsung.com>
Mon, 14 May 2018 23:19:37 +0000 (02:19 +0300)
committer박종현/동작제어Lab(SR)/Senior Engineer/삼성전자 <jh1302.park@samsung.com>
Mon, 14 May 2018 23:19:37 +0000 (08:19 +0900)
* tools nncc: compiler initial commit

Create makefiles and main for compiler

Signed-off-by: Vitaliy Cherepanov <v.cherepanov@samsung.com>
* tools nncc: compiler initial commit

Move tools/nncc to contrib/tools/

Signed-off-by: Vitaliy Cherepanov <v.cherepanov@samsung.com>
* tools nncc: compiler initial commit

code clean remove unused code

Signed-off-by: Vitaliy Cherepanov <v.cherepanov@samsung.com>
* tools nncc: compiler initial commit

Move contrib/tools/nncc to contrib/nnc
rename cl to nnc

Signed-off-by: Vitaliy Cherepanov <v.cherepanov@samsung.com>
* tools nnc: compiler initial commit

private nncc_core library target link

Signed-off-by: Vitaliy Cherepanov <v.cherepanov@samsung.com>
contrib/nnc/CMakeLists.txt [new file with mode: 0644]
contrib/nnc/src/main.cpp [new file with mode: 0644]

diff --git a/contrib/nnc/CMakeLists.txt b/contrib/nnc/CMakeLists.txt
new file mode 100644 (file)
index 0000000..ddf14b4
--- /dev/null
@@ -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 (file)
index 0000000..44e82e2
--- /dev/null
@@ -0,0 +1 @@
+int main(int argc, char *argv[]) { return 0; }