# HG changeset patch # User Wuzzy # Date 1564876332 -7200 # Node ID 95281174e29701bc575705ef1c954fb81cbf8a35 # Parent 042a5e8d9c591f72fef3f5029908158c8a358b63 Rewrite a few CMake flag descriptions diff -r 042a5e8d9c59 -r 95281174e297 CMakeLists.txt --- a/CMakeLists.txt Sun Aug 04 02:38:11 2019 +0300 +++ b/CMakeLists.txt Sun Aug 04 01:52:12 2019 +0200 @@ -27,9 +27,9 @@ option(BUILD_SHARED_LIBS "Build libraries as shared modules (on)" ON) if(WIN32 OR APPLE) - option(LUA_SYSTEM "Use system lua (off)" OFF) + option(LUA_SYSTEM "Use system Lua (off)" OFF) else() - option(LUA_SYSTEM "Use system lua (on)" ON) + option(LUA_SYSTEM "Use system Lua (on)" ON) endif() option(BUILD_ENGINE_LIBRARY "Enable hwengine library (off)" OFF) @@ -40,8 +40,8 @@ option(SKIPBUNDLE "Do not create relocate bundle (off)" OFF) option(BUILD_ENGINE_C "Compile hwengine as native C (off)" OFF) -option(BUILD_ENGINE_JS "Compile hwengine as javascript (off)" OFF) -option(GL2 "Enable OpenGL 2 rendering !!!EXPERIMENTAL - DO NOT USE!!! [default: off)" OFF) +option(BUILD_ENGINE_JS "Compile hwengine as JavaScript (off)" OFF) +option(GL2 "Enable OpenGL 2 rendering, only use if you know what you're doing (off)" OFF) set(GHFLAGS "" CACHE STRING "Additional Haskell flags") if(UNIX AND NOT APPLE)