The complete source code of IdealIRC http://www.idealirc.org/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
idealirc/Widgets/CMakeLists.txt

14 lines
499 B

set(component "IWidgets")
list(APPEND ${component}_SOURCES
${CMAKE_CURRENT_SOURCE_DIR}/IIRCView.cpp
${CMAKE_CURRENT_SOURCE_DIR}/IIRCView.h
${CMAKE_CURRENT_SOURCE_DIR}/ILineEdit.cpp
${CMAKE_CURRENT_SOURCE_DIR}/ILineEdit.h
${CMAKE_CURRENT_SOURCE_DIR}/IListWidget.cpp
${CMAKE_CURRENT_SOURCE_DIR}/IListWidget.h
)
add_library(${component} STATIC ${${component}_SOURCES})
qt5_use_modules(${component} Widgets)
target_include_directories(${component} PRIVATE ${CMAKE_SOURCE_DIR})