Skip to content

Instantly share code, notes, and snippets.

View ugurkan-syntonym's full-sized avatar

ugurkan-syntonym

View GitHub Profile
# Minimum CMake version
cmake_minimum_required(VERSION 3.20)
# Project name and C++ standard
project(SyntonymApp VERSION 1.0 LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
# Define the executable target
add_executable(${PROJECT_NAME}