From beba85a59601d6fa6a376091665e3e1a3f61f873 Mon Sep 17 00:00:00 2001 From: kokkiemouse Date: Sun, 22 Nov 2020 23:43:23 +0900 Subject: [PATCH] added channel cmake file(prepare for tomorrow) Signed-off-by: kokkiemouse --- tools/cpp/channel/.gitignore | 75 ++++++++++++++++++++++++++++++++++++++++ tools/cpp/channel/CMakeLists.txt | 6 ++++ 2 files changed, 81 insertions(+) create mode 100644 tools/cpp/channel/.gitignore create mode 100644 tools/cpp/channel/CMakeLists.txt diff --git a/tools/cpp/channel/.gitignore b/tools/cpp/channel/.gitignore new file mode 100644 index 00000000..4e9b9d3c --- /dev/null +++ b/tools/cpp/channel/.gitignore @@ -0,0 +1,75 @@ +# This file is used to ignore files which are generated +# ---------------------------------------------------------------------------- + +*~ +*.autosave +*.a +*.core +*.moc +*.o +*.obj +*.orig +*.rej +*.so +*.so.* +*_pch.h.cpp +*_resource.rc +*.qm +.#* +*.*# +core +!core/ +tags +.DS_Store +.directory +*.debug +Makefile* +*.prl +*.app +moc_*.cpp +ui_*.h +qrc_*.cpp +Thumbs.db +*.res +*.rc +/.qmake.cache +/.qmake.stash + +# qtcreator generated files +*.pro.user* + +# xemacs temporary files +*.flc + +# Vim temporary files +.*.swp + +# Visual Studio generated files +*.ib_pdb_index +*.idb +*.ilk +*.pdb +*.sln +*.suo +*.vcproj +*vcproj.*.*.user +*.ncb +*.sdf +*.opensdf +*.vcxproj +*vcxproj.* + +# MinGW generated files +*.Debug +*.Release + +# Python byte code +*.pyc + +# Binaries +# -------- +*.dll +*.exe +# QT +CMakeLists.txt.user +build/ diff --git a/tools/cpp/channel/CMakeLists.txt b/tools/cpp/channel/CMakeLists.txt new file mode 100644 index 00000000..04f1cd42 --- /dev/null +++ b/tools/cpp/channel/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 3.1) +project(channel CXX) +set(CMAKE_CXX_STANDARD 17) +set(CMAKE_CXX_EXTENSIONS OFF) +set(CMAKE_CXX_STANDARD_REQUIRED ON) +add_subdirectory(src) \ No newline at end of file -- 2.11.0