2025-11-25 13:38:17 +08:00
|
|
|
add_executable(BasaltPresenter "")
|
|
|
|
|
target_sources(BasaltPresenter
|
|
|
|
|
PRIVATE
|
|
|
|
|
main.cpp
|
2025-11-27 14:15:20 +08:00
|
|
|
dll_loader.cpp
|
2026-01-08 19:23:19 +08:00
|
|
|
cmd_client.cpp
|
2025-11-27 14:15:20 +08:00
|
|
|
)
|
|
|
|
|
target_sources(BasaltPresenter
|
|
|
|
|
PUBLIC
|
|
|
|
|
FILE_SET HEADERS
|
|
|
|
|
FILES
|
|
|
|
|
dll_loader.hpp
|
2026-01-08 19:23:19 +08:00
|
|
|
cmd_client.hpp
|
2025-11-25 13:38:17 +08:00
|
|
|
)
|
|
|
|
|
target_include_directories(BasaltPresenter
|
|
|
|
|
PUBLIC
|
|
|
|
|
"${CMAKE_CURRENT_LIST_DIR}"
|
|
|
|
|
)
|
2025-11-27 14:15:20 +08:00
|
|
|
target_link_libraries(BasaltPresenter
|
|
|
|
|
PRIVATE
|
|
|
|
|
BasaltShared
|
|
|
|
|
)
|
2025-11-25 13:38:17 +08:00
|
|
|
|
2026-01-04 23:11:58 +08:00
|
|
|
install(TARGETS BasaltPresenter
|
|
|
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
|
|
|
)
|