forked from Alepha/Alepha
A simple cmake build system to start.
This commit is contained in:
14
CMakeLists.txt
Normal file
14
CMakeLists.txt
Normal 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 )
|
Reference in New Issue
Block a user