mirror of
https://github.com/correl/mercenary.git
synced 2024-11-23 19:19:51 +00:00
Correl Roush
1cf438da9b
* alias calls work, and internal aliases can be registered through the script manager * Updated the build system to use cmake. Makes things so much nicer. git-svn-id: file:///srv/svn/ircclient/trunk@5 a9804ffe-773b-11dd-bd7c-89c3ef1d2733
14 lines
No EOL
407 B
CMake
14 lines
No EOL
407 B
CMake
set (cliapp_SOURCES
|
|
main.cpp
|
|
testapp.cpp
|
|
)
|
|
set (cliapp_MOC_HEADERS
|
|
testapp.h
|
|
)
|
|
QT4_WRAP_CPP (cliapp_MOC_SOURCES ${cliapp_MOC_HEADERS})
|
|
include_directories(${ircclient_SOURCE_DIR}/src)
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
|
link_directories(${ircclient_BINARY_DIR}/src)
|
|
|
|
add_executable(cliapp ${cliapp_SOURCES} ${cliapp_MOC_SOURCES} ${cliapp_ui})
|
|
target_link_libraries (cliapp ircclient ${LIBS}) |