diff options
author | Tycho <work.tycho+git@gmail.com> | 2014-01-07 14:08:58 +0100 |
---|---|---|
committer | Tycho <work.tycho+git@gmail.com> | 2014-01-07 14:08:58 +0100 |
commit | 623146996a6a75cd7218bc6a0756511aabfd5098 (patch) | |
tree | 408137ddb7f285a20c6f633dc77b804b1007cd75 /CMakeLists.txt | |
parent | Merge branch 'master' of github.com:mc-server/MCServer (diff) | |
download | cuberite-623146996a6a75cd7218bc6a0756511aabfd5098.tar cuberite-623146996a6a75cd7218bc6a0756511aabfd5098.tar.gz cuberite-623146996a6a75cd7218bc6a0756511aabfd5098.tar.bz2 cuberite-623146996a6a75cd7218bc6a0756511aabfd5098.tar.lz cuberite-623146996a6a75cd7218bc6a0756511aabfd5098.tar.xz cuberite-623146996a6a75cd7218bc6a0756511aabfd5098.tar.zst cuberite-623146996a6a75cd7218bc6a0756511aabfd5098.zip |
Diffstat (limited to '')
-rw-r--r-- | CMakeLists.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 451854074..135826abc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -97,6 +97,17 @@ if (WIN32) add_definitions(-DLUA_BUILD_AS_DLL) endif() +#On Unix we use two dynamic loading libraries dl and ltdl. +#Preference is for dl on unknown systems as it is specified in POSIX +#the dynamic loader is used by lua and sqllite. +if (UNIX) + if(${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") + set(DYNAMIC_LOADER ltdl) + else() + set(DYNAMIC_LOADER dl) + endif() +endif() + # The Expat library is linked in statically, make the source files aware of that: add_definitions(-DXML_STATIC) |