Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

kaist-comet/cpp-project-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

7 Commits

Repository files navigation

C++ Project Template

A simple C++ project template using CMake for easy building and project management.

Project Structure

cpp-project-template/
├── CMakeLists.txt # Build configuration
├── README.md # This file
├── include/ # Header files
│ └── math_utils.h # Math utility functions header
└── src/ # Source files
 ├── main.cpp # Main source file
 └── math_utils.cpp # Math utility functions implementation

Prerequisites

  • CMake (version 3.10 or higher)
  • C++ Compiler supporting C++17 (GCC, Clang, or MSVC)

Building the Project

1. Create a build directory

mkdir build
cd build

2. Configure the project

# For Debug build (includes debugging symbols)
cmake -DCMAKE_BUILD_TYPE=Debug ..
# For Release build (optimized)
cmake -DCMAKE_BUILD_TYPE=Release ..

3. Build the executable

cmake --build .

4. Run the program

# On Linux/macOS
./MyProject
# On Windows
MyProject.exe

Quick Start (One-liner)

mkdir build && cd build && cmake .. && cmake --build . && ./MyProject

Adding New Source Files

  1. Add your .cpp files to the src/ directory
  2. Add your .h or .hpp header files to the include/ directory
  3. Update CMakeLists.txt to include the new files:
    add_executable(${PROJECT_NAME} 
     src/main.cpp
     src/math_utils.cpp
     src/your_new_file.cpp
    )
  4. Rebuild the project

Customization

  • Project Name: Change MyProject in CMakeLists.txt to your desired name
  • C++ Standard: Modify CMAKE_CXX_STANDARD if you need a different C++ version
  • Compiler Flags: Add additional flags in the appropriate build type section

Happy coding! 🚀

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

Contributors

AltStyle によって変換されたページ (->オリジナル) /