1
0
Files
BasaltMeter/BasaltPresenter/Presenter/CMakeLists.txt
2026-01-04 23:11:58 +08:00

25 lines
422 B
CMake

add_executable(BasaltPresenter "")
target_sources(BasaltPresenter
PRIVATE
main.cpp
dll_loader.cpp
)
target_sources(BasaltPresenter
PUBLIC
FILE_SET HEADERS
FILES
dll_loader.hpp
)
target_include_directories(BasaltPresenter
PUBLIC
"${CMAKE_CURRENT_LIST_DIR}"
)
target_link_libraries(BasaltPresenter
PRIVATE
BasaltShared
)
install(TARGETS BasaltPresenter
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
)