This repository has been archived on 2024-03-07. You can view files and clone it, but cannot push or open issues/pull-requests.
garklang/lib/CMakeLists.txt

16 lines
223 B
CMake
Raw Permalink Normal View History

2024-02-21 19:48:17 +00:00
cmake_minimum_required(VERSION 3.2)
project(gark-lib
LANGUAGES CXX
)
add_library(gark-lib
Module.cpp
)
set_property(TARGET gark-lib PROPERTY CXX_STANDARD 17)
target_compile_options(gark-lib
PUBLIC -Wall -Wextra
)