biner/CMakeLists.txt
Jacob 7f99d8dff6 Switch from Meson to CMake.
While some people think CMake is satan's build system, I believe it's
more hackable, and while that doesn't really matter for this project,
I'd prefer if most of my projects use the same build system.

Meson has also been problematic in the past if you use an older version,
particularly with finding dependencies. CMake is a pseudo-standard, so
it should be a better match for what I want to do.
2024-04-14 16:49:35 +02:00

17 lines
288 B
CMake

cmake_minimum_required(VERSION 3.1...3.29)
project(biner VERSION 0.1 LANGUAGES CXX)
set_property(GLOBAL PROPERTY CXX_STANDARD 2a)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
include_directories(
include
)
add_executable(biner
src/biner.cpp
)
install(TARGETS biner DESTINATION bin)