15 lines
352 B
CMake
15 lines
352 B
CMake
project(Studio)
|
|
|
|
create_resources(Resource ${CMAKE_BINARY_DIR}/Resources/StudioResources.hpp)
|
|
|
|
qt_add_executable(Studio
|
|
${CMAKE_BINARY_DIR}/Resources/StudioResources.hpp
|
|
|
|
Header/MainWindow.hpp
|
|
|
|
Source/main.cpp
|
|
Source/MainWindow.cpp
|
|
)
|
|
|
|
target_include_directories(Studio PRIVATE Header)
|
|
target_link_libraries(Studio PRIVATE Common Engine) |