15 lines
240 B
CMake
15 lines
240 B
CMake
add_executable(BasaltPresenter "")
|
|
target_sources(BasaltPresenter
|
|
PRIVATE
|
|
main.cpp
|
|
)
|
|
target_include_directories(BasaltPresenter
|
|
PUBLIC
|
|
"${CMAKE_CURRENT_LIST_DIR}"
|
|
)
|
|
# target_link_libraries(YYCCTest
|
|
# PRIVATE
|
|
# BasaltShared
|
|
# )
|
|
|