Skip to content

kaycxx/app-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

app-template

C++ app template.

GitHub

Requirements

  • C++23 compiler and standard library
  • Exception support
  • Run-time type information (RTTI)

Usage

app-template 1 2

The app prints the sum of the two arguments.

Build From Source

cmake -B build
cmake --build build

Install

cmake --install build --prefix /tmp/root

If no prefix is specified, CMake installs to /usr/local by default on Unix systems.

Development

Run all tests:

cmake --build build --target test