stuff-from-scratch/apps/CMakeLists.txt

15 lines
359 B
CMake
Raw Normal View History

2022-12-02 11:50:15 +00:00
add_subdirectory(notes_tk)
add_subdirectory(website-generator)
2022-11-09 19:54:25 +00:00
2022-12-02 11:50:15 +00:00
# Experimental Below
if(WIN32)
add_subdirectory(directx-practice)
2021-04-17 12:57:14 +00:00
endif()
2020-05-02 07:31:03 +00:00
# Sample Console
2022-12-02 11:50:15 +00:00
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)
2020-07-04 18:43:08 +00:00
2022-10-03 06:45:10 +00:00