29 lines
496 B
CMake
29 lines
496 B
CMake
add_executable(BasaltPresenter "")
|
|
target_sources(BasaltPresenter
|
|
PRIVATE
|
|
main.cpp
|
|
dll_loader.cpp
|
|
cmd_client.cpp
|
|
stopwatch.cpp
|
|
)
|
|
target_sources(BasaltPresenter
|
|
PUBLIC
|
|
FILE_SET HEADERS
|
|
FILES
|
|
dll_loader.hpp
|
|
cmd_client.hpp
|
|
stopwatch.hpp
|
|
)
|
|
target_include_directories(BasaltPresenter
|
|
PUBLIC
|
|
"${CMAKE_CURRENT_LIST_DIR}"
|
|
)
|
|
target_link_libraries(BasaltPresenter
|
|
PRIVATE
|
|
BasaltShared
|
|
)
|
|
|
|
install(TARGETS BasaltPresenter
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
)
|