cmake_minimum_required(VERSION 3.23)
project(FastInverseSqrt)

set(CMAKE_CXX_STANDARD 23)

add_executable(FastInverseSqrt main.cpp)
