cmake_minimum_required(VERSION 3.5)

project(plygn
	VERSION 0.0.0
	DESCRIPTION
	"Tool for realizing transformation and operations on polygons"
	LANGUAGES CXX
)

find_package(Boost COMPONENTS program_options)

add_executable(
	plygn
	./plygn.cpp
)
target_include_directories(plygn PRIVATE . ${Boost_INCLUDE_DIRS})
target_link_libraries(
	plygn
	PRIVATE project_warnings
		${Boost_LIBRARIES}
		stdc++fs
		cdt2d
)
target_compile_features(plygn PRIVATE cxx_std_17)
