From 0d854b6e158be384f8c271f62f0f85d60b7e1c16 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: Thu, 22 Mar 2018 19:27:32 +0900 Subject: [PATCH] Introduce 'tools' directory (#37) This commit introduces 'tools' directory which will host all the official projects that emit executables. Signed-off-by: Jonghyun Park --- CMakeLists.txt | 1 + tools/CMakeLists.txt | 0 2 files changed, 1 insertion(+) create mode 100644 tools/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 7edd065..00adb4f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,4 +3,5 @@ cmake_minimum_required(VERSION 2.8) project(nncc) add_subdirectory(lib) +add_subdirectory(tools) add_subdirectory(contrib) diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt new file mode 100644 index 0000000..e69de29 -- 2.7.4