1
0
forked from Alepha/Alepha

A simple cmake build system to start.

This commit is contained in:
2023-10-12 14:55:13 -04:00
parent 76606fca97
commit fe5831f643

14
CMakeLists.txt Normal file
View File

@ -0,0 +1,14 @@
cmake_minimum_required( VERSION 3.25 )
project( Alepha )
add_compile_options( -I . ; -std=c++20 )
set( VERBOSE 1 )
set( CMAKE_VERBOSE_MAKEFILE true )
file( CREATE_LINK ${CMAKE_SOURCE_DIR} Alepha SYMBOLIC )
add_library( alepha SHARED Console.cpp ProgramOptions.cpp string_algorithms.cpp word_wrap.cpp )
link_libraries( alepha )
add_executable( example example.cc )