blob: 143834c10a5575474dc9b02a7e14990cd4587593 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
project(alsoft-config)
include_directories("${alsoft-config_BINARY_DIR}")
find_package(Qt4 COMPONENTS QtCore QtGui)
if(QT_QTGUI_LIBRARY AND QT_QTCORE_LIBRARY)
include(${QT_USE_FILE})
include_directories(${QT_QTCORE_INCLUDE_DIR} ${QT_QTGUI_INCLUDE_DIR})
set(alsoft-config_SRCS main.cpp
mainwindow.cpp
)
set(alsoft-config_UIS mainwindow.ui)
QT4_WRAP_UI(UIS ${alsoft-config_UIS})
set(alsoft-config_MOCS mainwindow.h)
QT4_WRAP_CPP(MOCS ${alsoft-config_MOCS})
add_executable(../../alsoft-config ${alsoft-config_SRCS} ${UIS} ${RSCS} ${TRS} ${MOCS})
target_link_libraries(../../alsoft-config ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY})
INSTALL(TARGETS ../../alsoft-config
RUNTIME DESTINATION bin
LIBRARY DESTINATION "lib${LIB_SUFFIX}"
ARCHIVE DESTINATION "lib${LIB_SUFFIX}"
)
message(STATUS "Building configuration program")
endif()
|