OSDN Git Service

added channel cmake file(prepare for tomorrow)
authorkokkiemouse <kokkiemouse@fascode.net>
Sun, 22 Nov 2020 14:43:23 +0000 (23:43 +0900)
committerkokkiemouse <kokkiemouse@fascode.net>
Sun, 22 Nov 2020 14:43:23 +0000 (23:43 +0900)
Signed-off-by: kokkiemouse <kokkiemouse@fascode.net>
tools/cpp/channel/.gitignore [new file with mode: 0644]
tools/cpp/channel/CMakeLists.txt [new file with mode: 0644]

diff --git a/tools/cpp/channel/.gitignore b/tools/cpp/channel/.gitignore
new file mode 100644 (file)
index 0000000..4e9b9d3
--- /dev/null
@@ -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 (file)
index 0000000..04f1cd4
--- /dev/null
@@ -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