Skip to content

Commit

Permalink
setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Shuzhengz committed Aug 3, 2022
1 parent 6802a32 commit 014752f
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,7 @@
*.exe
*.out
*.app

# Application Specific
.idea/
cmake-build-debug/
6 changes: 6 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.23)
project(JEC_cpp)

set(CMAKE_CXX_STANDARD 14)

add_library(JEC_cpp library.cpp)
2 changes: 2 additions & 0 deletions library.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#include "library.hpp"

10 changes: 10 additions & 0 deletions library.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#ifndef JEC_CPP_LIBRARY_HPP
#define JEC_CPP_LIBRARY_HPP

class Config {};

class ConfigFile {};

class ConfigDir {};

#endif //JEC_CPP_LIBRARY_HPP

0 comments on commit 014752f

Please sign in to comment.