forked from qt-creator/qt-creator
Change-Id: I5d439be4442ab5c41935534b93ebc9d6868cb880 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io> Reviewed-by: Eike Ziller <eike.ziller@qt.io>
14 lines
364 B
CMake
14 lines
364 B
CMake
add_qtc_executable(qml_ast2dot
|
|
BUILD_DEFAULT OFF
|
|
DEPENDS Qt5::Core Qt5::Gui QmlJS
|
|
SOURCES main.cpp
|
|
)
|
|
|
|
extend_qtc_executable(qml_ast2dot
|
|
PROPERTIES
|
|
OUTPUT_NAME "qml-ast2dot"
|
|
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}"
|
|
ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}"
|
|
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}"
|
|
)
|