Astral-codex/CMakeLists.txt

12 lines
304 B
CMake
Raw Permalink Normal View History

2024-12-18 13:06:15 +00:00
cmake_minimum_required(VERSION 3.30)
project(Astral-codex)
set(CMAKE_CXX_STANDARD 20)
2024-12-20 13:37:05 +00:00
add_compile_options(-Wall -Wextra -Wshadow -Wconversion -Wsign-conversion -Werror -pedantic-errors -Weffc++)
2024-12-18 16:26:30 +00:00
add_executable(Astral-codex main.cpp
translator.cpp)
target_link_libraries(Astral-codex -static)