diff options
author | Sky <git@bunnies.cc> | 2013-10-06 01:09:21 +0100 |
---|---|---|
committer | Sky <git@bunnies.cc> | 2013-10-06 01:09:21 +0100 |
commit | d48aae7a16e8e5f33683f5a498bb5b1edb21dc31 (patch) | |
tree | f0b443dae3020629c27207b057ecaa8c819c19f0 /depends | |
parent | 2398acc9e490ce124aa621c19156c89ef87591f1 (diff) | |
download | MultiMC-d48aae7a16e8e5f33683f5a498bb5b1edb21dc31.tar MultiMC-d48aae7a16e8e5f33683f5a498bb5b1edb21dc31.tar.gz MultiMC-d48aae7a16e8e5f33683f5a498bb5b1edb21dc31.tar.lz MultiMC-d48aae7a16e8e5f33683f5a498bb5b1edb21dc31.tar.xz MultiMC-d48aae7a16e8e5f33683f5a498bb5b1edb21dc31.zip |
Fix Linux CMake issues arising from Windows workaround
Diffstat (limited to 'depends')
-rw-r--r-- | depends/pack200/CMakeLists.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/depends/pack200/CMakeLists.txt b/depends/pack200/CMakeLists.txt index d71f6535..386c8bb8 100644 --- a/depends/pack200/CMakeLists.txt +++ b/depends/pack200/CMakeLists.txt @@ -1,7 +1,9 @@ CMAKE_MINIMUM_REQUIRED(VERSION 2.6) -# In Qt 5.1+ we have our own main() function, don't autolink to qtmain on Windows -cmake_policy(SET CMP0020 OLD) +IF(WIN32) + # In Qt 5.1+ we have our own main() function, don't autolink to qtmain on Windows + cmake_policy(SET CMP0020 OLD) +ENDIF() project(unpack200) |