Initial commit
This commit is contained in:
commit
2958c2c72b
41
.gitignore
vendored
Normal file
41
.gitignore
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
|
||||
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
||||
|
||||
# User-specific stuff
|
||||
.idea/
|
||||
|
||||
# CMake
|
||||
cmake-build-*/
|
||||
|
||||
# Mongo Explorer plugin
|
||||
.idea/**/mongoSettings.xml
|
||||
|
||||
# File-based project format
|
||||
*.iws
|
||||
|
||||
# IntelliJ
|
||||
out/
|
||||
|
||||
# mpeltonen/sbt-idea plugin
|
||||
.idea_modules/
|
||||
|
||||
# JIRA plugin
|
||||
atlassian-ide-plugin.xml
|
||||
|
||||
# Cursive Clojure plugin
|
||||
.idea/replstate.xml
|
||||
|
||||
# SonarLint plugin
|
||||
.idea/sonarlint/
|
||||
|
||||
# Crashlytics plugin (for Android Studio and IntelliJ)
|
||||
com_crashlytics_export_strings.xml
|
||||
crashlytics.properties
|
||||
crashlytics-build.properties
|
||||
fabric.properties
|
||||
|
||||
# Editor-based Rest Client
|
||||
.idea/httpRequests
|
||||
|
||||
# Android studio 3.1+ serialized cache file
|
||||
.idea/caches/build_file_checksums.ser
|
3
CMakeLists.txt
Normal file
3
CMakeLists.txt
Normal file
@ -0,0 +1,3 @@
|
||||
add_subdirectory(Src/)
|
||||
add_subdirectory(Exec/)
|
||||
add_subdirectory(Test/)
|
8
Src/CMakeLists.txt
Normal file
8
Src/CMakeLists.txt
Normal file
@ -0,0 +1,8 @@
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
project(GeneralUtility)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
|
||||
add_library(GeneralUtility
|
||||
GeneralUtility.cpp
|
||||
)
|
2
Src/GeneralUtility.cpp
Normal file
2
Src/GeneralUtility.cpp
Normal file
@ -0,0 +1,2 @@
|
||||
#include "GeneralUtility.h"
|
||||
|
12
Src/GeneralUtility.h
Normal file
12
Src/GeneralUtility.h
Normal file
@ -0,0 +1,12 @@
|
||||
#ifndef GENERALUTILITY_GENERALUTILITY_H
|
||||
#define GENERALUTILITY_GENERALUTILITY_H
|
||||
|
||||
class GeneralUtility {
|
||||
public:
|
||||
|
||||
private:
|
||||
// No instanciation! >:(
|
||||
GeneralUtility();
|
||||
};
|
||||
|
||||
#endif //GENERALUTILITY_GENERALUTILITY_H
|
Loading…
x
Reference in New Issue
Block a user