10 lines
171 B
CMake
10 lines
171 B
CMake
|
|
SET(example_name simple)
|
|
|
|
SET(KIT_SRCS
|
|
main.cpp
|
|
)
|
|
|
|
ADD_EXECUTABLE(${example_name} ${KIT_SRCS})
|
|
TARGET_LINK_LIBRARIES(${example_name} ${PROJECT_NAME} ${QT_TARGETS})
|