9 lines
223 B
CMake
9 lines
223 B
CMake
|
cmake_minimum_required(VERSION 2.8)
|
||
|
project(base64-lib)
|
||
|
|
||
|
aux_source_directory("src" SOURCES)
|
||
|
add_library(${PROJECT_NAME} STATIC ${SOURCES})
|
||
|
target_include_directories(${PROJECT_NAME} PUBLIC include)
|
||
|
|
||
|
add_subdirectory(test)
|