mirror of
https://gitlab.com/niansa/anyproc.git
synced 2025-03-06 20:49:24 +01:00
19 lines
480 B
CMake
19 lines
480 B
CMake
cmake_minimum_required(VERSION 3.5)
|
|
|
|
project(anyproc LANGUAGES CXX)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
include(CPM.cmake)
|
|
CPMAddPackage("gl:niansa/libjustlm@1.3")
|
|
add_subdirectory(.. anyproc)
|
|
|
|
add_executable(dictionary dictionary.cpp)
|
|
target_link_libraries(dictionary PUBLIC anyproc)
|
|
|
|
add_executable(translator translator.cpp)
|
|
target_link_libraries(translator PUBLIC anyproc)
|
|
|
|
add_executable(repl repl.cpp)
|
|
target_link_libraries(repl PUBLIC anyproc)
|