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.
14 lines
510 B
14 lines
510 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})
|
|
target_link_libraries(${component} Qt5::Widgets)
|
|
target_include_directories(${component} PRIVATE ${CMAKE_SOURCE_DIR})
|
|
|