The complete source code of IdealIRC
http://www.idealirc.org/
10 lines
327 B
10 lines
327 B
set(component "ScriptDialog")
|
|
|
|
list(APPEND ${component}_SOURCES
|
|
${CMAKE_CURRENT_SOURCE_DIR}/ScriptDialog.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/ScriptDialog.h
|
|
)
|
|
|
|
add_library(${component} STATIC ${${component}_SOURCES})
|
|
qt5_use_modules(${component} Widgets)
|
|
target_include_directories(${component} PRIVATE ${CMAKE_SOURCE_DIR})
|
|
|