generated from bing/readnotes
7 lines
171 B
CMake
7 lines
171 B
CMake
|
cmake_minimum_required(VERSION 3.10)
|
||
|
project(fonts)
|
||
|
add_subdirectory(core)
|
||
|
add_subdirectory(reader)
|
||
|
add_executable(main main.cpp)
|
||
|
target_link_libraries(main core reader)
|