forked from qt-creator/qt-creator
13 lines
310 B
CMake
13 lines
310 B
CMake
|
|
add_qtc_executable(testapp
|
||
|
|
DEPENDS Utils
|
||
|
|
SOURCES main.cpp
|
||
|
|
SKIP_INSTALL
|
||
|
|
INTERNAL_ONLY
|
||
|
|
)
|
||
|
|
|
||
|
|
set_target_properties(testapp PROPERTIES
|
||
|
|
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}"
|
||
|
|
ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}"
|
||
|
|
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}"
|
||
|
|
)
|