aboutsummaryrefslogtreecommitdiffstats
path: root/src/kvilib/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* Make D-Bus adaptor actually useful and use it as an IPC backend (#2630)Gravatar ctrlaltca2024-04-101-1/+0
| | | | | | | | | | * Move KViDbusAdaptor from kvilib to kvirc (so that it can access the g_pApp object) and add a method to register itself * KviMain: register a dbus session even when kdelibs are enabled * KviTalMainWindow: when kdelibs are enabled, avoid KMainWindow to expose all of its signal/lots via dbus * Implement a simple IPC using d-bus
* Use target_compile_features to select C++ standard (#2607)Gravatar Alexey Sokolov2024-02-121-2/+1
| | | | | * Use target_compile_features to select C++ standard * Modules and binary already inherit from kvilib
* Port from QRegExp (unavailable on qt6) to KviRegExp, based on QRegularExpressionGravatar Fabio Bas2023-10-181-0/+1
| | | | Method str_kvs_fnc_split() had to be replaced with the original version, since the newer one relied on Qt5's QStringRef
* cmake: add support for qt6Gravatar Fabio Bas2023-10-181-6/+1
|
* Generate PDB files for MSVC instead of any compiler on WindowsGravatar Leo2020-07-261-1/+3
|
* Modernize to C++17Gravatar IceN9ne2018-11-281-2/+2
|
* Use C++14Gravatar Alexey Sokolov2018-11-141-2/+2
|
* remove qt5_use_modules for Qt 5.11Gravatar Dessa2018-04-141-1/+1
| | | | | cmake modules for Qt 5.11 don't have that function anymore, so it needs to be replaced with the standard way of library linkage. downside is that the module listing in the Status page isn't looking too fancy anymore.
* Cmake updatesGravatar Fabio Bas2017-09-211-2/+13
| | | | | | | * Remove the usage of CMP0026’s LOCATION * fix WANT_STRIP option: fix #2306 * remove WANT_UNIVERSAL_BINARY option (obsolete) * fix bundling of Qt libraries on Osx
* Build also in debug mode for windows (#2192)Gravatar Alexey Sokolov2017-05-241-0/+1
| | | | | | | | | | | | | | | | | | | | * Build also in debug mode for windows See #2191 * Don't mix /Od and -O2 on windows build. -O2 comes from perl * Reindent perlcore CMakeLists * Fix debug python build on windows * Rearrange environment vars in appveyor * Try to publish pdb files too * install qts and kvirc's debug pdbs in debug config * use TARGET_PDB_FILE instead
* KviIrcServerReconnectInfo: RefactorGravatar staticfox2016-08-071-1/+0
|
* Shut down cleanly on SIGTERM and SIGINTGravatar Vladimir Panteleev2016-07-281-0/+1
| | | | | | | | | | | | | | | | | SIGTERM is the standard way on POSIX for the OS to tell an application to close. It can be sent when the computer is shutting down or the user is logging off, as well as by the user, directly, or indirectly (e.g. by using a task manager). SIGINT is sent when the user presses Ctrl+C in a terminal window in which the program is running. In both of these cases, KVIrc should shut down cleanly, as if the user closed the main window. This implies flushing logs. By implementing SIGTERM and SIGINT handling on POSIX, this patch fixes the log files not being flushed on receiving such a signal, thus causing the last few lines to be lost.
* general: More De-double-underscore-ificationGravatar staticfox2016-05-171-1/+1
|
* CMake: Better cygwin fixGravatar staticfox2016-04-211-2/+10
|
* CMake: Fix build on cygwinGravatar staticfox2016-04-211-7/+2
|
* Rename KviOsInfo to KviRuntimeInfo, which makes more sense.Gravatar wodim2016-01-011-1/+1
|
* enable c++11 differently, also clean up some now-obsolete policiesGravatar Dessa2015-11-061-1/+2
|
* Enable C++11. Fixes #1707.Gravatar Szymon Tomasz Stefanek2015-11-011-0/+4
|
* dcc video: removed linux-only, v4l implementation; use qt5's cross-platform ↵Gravatar Fabio Bas2012-12-251-10/+0
| | | | | | | | implementation instead. Note: this is still so dirty that is disabled by default git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@6307 17fca916-40b9-46aa-a4ea-0a15b648b75c
* - update KviOsInfo with values from the winsdk8Gravatar Robert Förster2012-10-081-1/+1
| | | | | | | | | - rip out some append libs statements for ws2_32; since we are linking in a way they get added anyway we don't need them (yet) - remove wsock32.lib from kvilib, linking works fine without it - move shlwapi for mingw from root to src/kvirc since that is where the msvc one is and it works - remove envvar hack added in r6273 from perlcore since it is unneeded git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@6276 17fca916-40b9-46aa-a4ea-0a15b648b75c
* fix right file, don't commit when drunk after all :pGravatar Robert Förster2012-10-051-0/+4
| | | | git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@6272 17fca916-40b9-46aa-a4ea-0a15b648b75c
* - remove -Wl,--no-undefined "handling" as this is not something we should ↵Gravatar Robert Förster2012-10-051-4/+2
| | | | | | | | | "just do" (also, it broke append libs statements in a way i was too stupid to figure out) if we ever run into this again, try to fix it at its origin (which should be possible) - remove winmm hack now that append libs works - fix some win32 ifs in cmakelists files which should be mingw (check if this stuff is still needed when i get my mingw toolchain up) git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@6270 17fca916-40b9-46aa-a4ea-0a15b648b75c
* convert cmake files to lowercase statements prehistoric cmake versions ↵Gravatar Robert Förster2012-10-041-33/+33
| | | | | | required uppercase, but lowercase is now preferred so change it (yeah feel free to hate me for this commit ) git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@6267 17fca916-40b9-46aa-a4ea-0a15b648b75c
* More qt5 porting (qprinter and qftp), removed some warningsGravatar Fabio Bas2012-09-291-0/+1
| | | | git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@6263 17fca916-40b9-46aa-a4ea-0a15b648b75c
* qt5 support: cmake build system updateGravatar Fabio Bas2012-09-281-44/+5
| | | | git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@6257 17fca916-40b9-46aa-a4ea-0a15b648b75c
* - move the stripping of /RTC1 to perlcore, as MSVC doesn't seem to care if ↵Gravatar Robert Förster2012-09-281-1/+3
| | | | | | | | | | | | it needs to link against mixed modules and perl seems to only module not wanting run-time error checks (perl does braindead things anyway; i have no debug python to test here) - "fix" msvc build with perl disabled (note the todo in kvilibs CMakeLists.txt hint: its a bleeping hack, kthxbye) - kill duplicate KVIRC_BINARYNAME from module.rules.txt - bump version in resources_win32/version.h - some svn:eol-style crap (i wonder if i ever finish that up) NB: try to beat some sanity into perl, since it does add tons of crap to the cmdline (it was actually the one adding -ltcg); which we need some of at some point in the build but it really shouldn't be done unconditionally. git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@6256 17fca916-40b9-46aa-a4ea-0a15b648b75c
* Install kvirc, kvilib and the module in the place actually declared in the ↵Gravatar Fabio Bas2012-04-291-8/+2
| | | | | | | | | cmake summary; osx: put qt libraries and plugins inside the bundle, and fix dyld references => bundles will now be redistributable to other users without prerequisites git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@6163 17fca916-40b9-46aa-a4ea-0a15b648b75c
* Dropped the KviTalPopupMenu layer, ported the involved code to QAction.Gravatar Fabio Bas2012-02-261-2/+0
| | | | | | | | This fixes most of the random crashes on osx, and is the base for a next change in the menubar. Addiotional fix: "disconnect" menu entry was broken since the 3.x era git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@6072 17fca916-40b9-46aa-a4ea-0a15b648b75c
* added KviShortcut class that takes care of creating shortcuts. Now it's ↵Gravatar Fabio Bas2011-08-221-0/+1
| | | | | | | | possible to use QtKeySequence::StandardKey's multiple keybindings (fixes #1183) gendoc.pl: permit external links git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5939 17fca916-40b9-46aa-a4ea-0a15b648b75c
* reworked toolbars and kviactions:Gravatar Fabio Bas2011-05-021-2/+0
| | | | | | | | | | - use qactions intead of qtoolbuttons + ids - drop ktoolbar, since it adds its own methods and context menu - add button style (text/icon/both/etc..) - default buttons icon size reverted to 22 :) git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5813 17fca916-40b9-46aa-a4ea-0a15b648b75c
* Start making sense out of KviLocale: split into separate files inside a new ↵Gravatar Szymon Tomasz Stefanek2011-03-231-3/+8
| | | | | | subdirectory. git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5672 17fca916-40b9-46aa-a4ea-0a15b648b75c
* renamed namespaceGravatar Elvio Basello2011-02-101-1/+1
| | | | git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5459 17fca916-40b9-46aa-a4ea-0a15b648b75c
* merged egns's patch for vs2010 compilationGravatar Fabio Bas2011-01-141-0/+4
| | | | git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5360 17fca916-40b9-46aa-a4ea-0a15b648b75c
* yet more splitting;Gravatar Elvio Basello2011-01-041-1/+2
| | | | | | | | added doxygen comments; improved hungarian notation; git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5297 17fca916-40b9-46aa-a4ea-0a15b648b75c
* yet more splitting; killed some definesGravatar Elvio Basello2011-01-041-0/+1
| | | | git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5295 17fca916-40b9-46aa-a4ea-0a15b648b75c
* yet more splitting;Gravatar Elvio Basello2010-12-301-0/+1
| | | | | | | | improved hungarian notation; added doxygen documentation; git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5275 17fca916-40b9-46aa-a4ea-0a15b648b75c
* reworked mIRC control codes;Gravatar Elvio Basello2010-12-301-0/+1
| | | | | | | yet more splitting; git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5272 17fca916-40b9-46aa-a4ea-0a15b648b75c
* Some fixes for the http requestGravatar Szymon Tomasz Stefanek2010-12-301-1/+0
| | | | git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5271 17fca916-40b9-46aa-a4ea-0a15b648b75c
* yet more splittingGravatar Elvio Basello2010-12-291-0/+1
| | | | git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5264 17fca916-40b9-46aa-a4ea-0a15b648b75c
* yet more splittingGravatar Elvio Basello2010-12-291-1/+2
| | | | git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5262 17fca916-40b9-46aa-a4ea-0a15b648b75c
* More file splittingGravatar Szymon Tomasz Stefanek2010-12-291-0/+1
| | | | git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5259 17fca916-40b9-46aa-a4ea-0a15b648b75c
* More file splittingGravatar Szymon Tomasz Stefanek2010-12-291-1/+3
| | | | git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5255 17fca916-40b9-46aa-a4ea-0a15b648b75c
* More renames, fix the spelling of KVIrc etc...Gravatar Szymon Tomasz Stefanek2010-12-291-1/+2
| | | | git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5254 17fca916-40b9-46aa-a4ea-0a15b648b75c
* yet more splittingGravatar Elvio Basello2010-12-291-0/+2
| | | | git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5253 17fca916-40b9-46aa-a4ea-0a15b648b75c
* yet more splittingGravatar Elvio Basello2010-12-291-0/+3
| | | | git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5252 17fca916-40b9-46aa-a4ea-0a15b648b75c
* yet more splittingGravatar Elvio Basello2010-12-291-0/+1
| | | | git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5251 17fca916-40b9-46aa-a4ea-0a15b648b75c
* splitted some classes in their own filesGravatar Elvio Basello2010-12-291-1/+2
| | | | git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5250 17fca916-40b9-46aa-a4ea-0a15b648b75c
* Get rid of kvi_hstrEqualCIN file.Gravatar Szymon Tomasz Stefanek2010-12-281-1/+0
| | | | git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5246 17fca916-40b9-46aa-a4ea-0a15b648b75c
* Yet more renaming and cleanupGravatar Szymon Tomasz Stefanek2010-12-271-3/+3
| | | | git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5236 17fca916-40b9-46aa-a4ea-0a15b648b75c
* Kill system memmove, ix86 asm and kvi_memmove stuff: modern gcc coupled to ↵Gravatar Szymon Tomasz Stefanek2010-12-271-1/+0
| | | | | | glibc can do better these times. git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5235 17fca916-40b9-46aa-a4ea-0a15b648b75c