From d87b5e94fe98cbd1730155f36c3a36d9b8a8f0e8 Mon Sep 17 00:00:00 2001 From: gpanula Date: Fri, 14 Feb 2014 21:18:11 -0800 Subject: [PATCH] Run cmake in interactive so one can tweak variables and build targets --- Linux-server-setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Linux-server-setup.md b/Linux-server-setup.md index 400f7c2..ca8b352 100644 --- a/Linux-server-setup.md +++ b/Linux-server-setup.md @@ -17,7 +17,7 @@ Steps OR if behind a firewall/proxy `git https://://github.com/EQEmu/Server.git eqemu` 5. `cd eqemu` 6. If you do not have make or cmake installed already, `sudo apt-get install cmake make` -7. `cmake .` +7. `cmake -G "Unix Makefiles" -Wno-dev -i .` build types are "Debug Release RelWithDebInfo MinSizeRel" 8. `make` 9. If you get errors about CMake Error: your CXX compiler: "CMAKE_CXX_COMPILER-NOTFOUND" was not found, then try `sudo apt-get install build-essential` 10. If you get errors about Could NOT find PerlLibs (missing: PERL_LIBRARY), then try running ``cmake . -DPERL_LIBRARY=`locate -n 1 libperl.so` ``