diff options
| author | 2008-03-29 17:10:56 +0000 | |
|---|---|---|
| committer | 2008-03-29 17:10:56 +0000 | |
| commit | b11762a81c9fb9c18e16e9b5883be61ee6523755 (patch) | |
| tree | 7f131d47f8906186e9b48b563ffe11dc8f3de7f9 /src/modules/setup | |
| parent | ported modules about and action; (diff) | |
| download | KVIrc-b11762a81c9fb9c18e16e9b5883be61ee6523755.tar.gz KVIrc-b11762a81c9fb9c18e16e9b5883be61ee6523755.tar.bz2 KVIrc-b11762a81c9fb9c18e16e9b5883be61ee6523755.zip | |
added CMake rules :)
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@1330 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/setup')
| -rw-r--r-- | src/modules/setup/CMakeLists.txt | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/modules/setup/CMakeLists.txt b/src/modules/setup/CMakeLists.txt new file mode 100644 index 000000000..7f689c585 --- /dev/null +++ b/src/modules/setup/CMakeLists.txt @@ -0,0 +1,26 @@ +# CMakeLists for src/modules/setup + +# From qmake +#win32 { +# LIBS = -lole32 -luuid +#} + +SET(kvieditor_MOC_HDRS + setupwizard.h +) + +SET(kvisetup_SRCS + libkvisetup.cpp + setupwizard.cpp +) + +# After this call, files will be moc'ed to moc_kvi_*.cpp +QT4_WRAP_CPP(kvisetup_MOC_SRCS ${kvisetup_MOC_HDRS}) + +# Create library +ADD_LIBRARY(kvisetup SHARED ${kvisetup_SRCS} ${kvisetup_MOC_SRCS}) +#TARGET_LINK_LIBRARIES(kvilib kvisetup) + +# Install target +SET_TARGET_PROPERTIES(kvisetup PROPERTIES VERSION ${KVI_VERSION} SOVERSION ${KVI_MAJOR}) +INSTALL(TARGETS kvisetup LIBRARY DESTINATION ${KVI_INSTALL_PREFIX}/share/kvirc/${KVI_VERSION_BRANCH}/modules/)
\ No newline at end of file |
