cmake_minimum_required(VERSION 3.21) project(smallest_int) set(CMAKE_CXX_STANDARD 14) add_executable(smallest_int main.cpp)