1
0
Files
BasaltMeter/BasaltPresenter/Presenter/CMakeLists.txt

25 lines
422 B
CMake
Raw Normal View History

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
)
target_sources(BasaltPresenter
PUBLIC
FILE_SET HEADERS
FILES
dll_loader.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}
)