14 lines
322 B
CMake
14 lines
322 B
CMake
include(impl.cmake)
|
|
|
|
qt_add_executable(photon_light
|
|
src/api.cxx
|
|
src/main.cxx
|
|
src/main_window.cxx
|
|
src/main_window.ui
|
|
src/viewport.cxx
|
|
)
|
|
|
|
target_link_libraries(photon_light PRIVATE Qt6::Gui Qt6::Widgets)
|
|
target_link_libraries(photon_light PRIVATE photon_light_impl)
|
|
target_include_directories(photon_light PRIVATE src)
|