diff options
| author | 2012-10-05 19:43:10 +0000 | |
|---|---|---|
| committer | 2012-10-05 19:43:10 +0000 | |
| commit | 51e348174616f8714ddcf9e724813cf3799e6f76 (patch) | |
| tree | a8a0c1a57d0bc4863df91e308b45bfd65cb13777 /src/modules/setup | |
| parent | moved perl linking flags from main cmakelists to perlcore's cmakelists (diff) | |
| download | KVIrc-51e348174616f8714ddcf9e724813cf3799e6f76.tar.gz KVIrc-51e348174616f8714ddcf9e724813cf3799e6f76.tar.bz2 KVIrc-51e348174616f8714ddcf9e724813cf3799e6f76.zip | |
- remove -Wl,--no-undefined "handling" as this is not something we should "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
Diffstat (limited to 'src/modules/setup')
| -rw-r--r-- | src/modules/setup/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/setup/CMakeLists.txt b/src/modules/setup/CMakeLists.txt index 41729eb33..32f63246d 100644 --- a/src/modules/setup/CMakeLists.txt +++ b/src/modules/setup/CMakeLists.txt @@ -1,8 +1,8 @@ # CMakeLists for src/modules/setup -if(WIN32) +if(MINGW) list(APPEND LIBS -lole32 -luuid) -endif() +endif(MINGW) |
