From e312226f708d165b9f3357a50af58f540f0de8c8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=B0=95=EC=A2=85=ED=98=84/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Senior=20Engineer/=EC=82=BC=EC=84=B1?= =?utf8?q?=EC=A0=84=EC=9E=90?= Date: Wed, 21 Mar 2018 19:54:04 +0900 Subject: [PATCH] Introduce 'lib' directory (#25) This commit introduces 'lib' directory which will hold the implementation of libraries that nncc officially supports. Signed-off-by: Jonghyun Park --- CMakeLists.txt | 1 + lib/CMakeLists.txt | 0 2 files changed, 1 insertion(+) create mode 100644 lib/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 1933324..7edd065 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,4 +2,5 @@ cmake_minimum_required(VERSION 2.8) project(nncc) +add_subdirectory(lib) add_subdirectory(contrib) diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt new file mode 100644 index 0000000..e69de29 -- 2.7.4