9 lines
280 B
CMake
9 lines
280 B
CMake
add_subdirectory(notes_tk)
|
|
add_subdirectory(website-generator)
|
|
|
|
# Sample Console
|
|
add_executable(notes_tk_console main.cpp)
|
|
target_link_libraries(notes_tk_console PUBLIC console core network database geometry audio web)
|
|
set_property(TARGET notes_tk_console PROPERTY FOLDER apps)
|
|
|
|
|