Advertisement
Guest User

patch.src.CMakeLists.txt

a guest
Jan 20th, 2013
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. --- CMakeLists.txt.orig 2013-01-20 01:38:56.000000000 -0800
  2. +++ CMakeLists.txt 2013-01-20 02:11:08.000000000 -0800
  3. @@ -154,13 +154,13 @@
  4. set(CLIENT_PLATFORM_LIBS ${CLIENT_PLATFORM_LIBS} ${XXF86VM_LIBRARY})
  5. endif()
  6.  
  7. -find_package(Jthread REQUIRED)
  8. +#find_package(Jthread REQUIRED)
  9. find_package(Sqlite3 REQUIRED)
  10.  
  11. # Do not use system-wide installation of Lua, because it'll likely be a
  12. # different version and/or has different build options.
  13. -set(LUA_INCLUDE_DIR "${PROJECT_SOURCE_DIR}/lua/src")
  14. -set(LUA_LIBRARY "lua")
  15. +# set(LUA_INCLUDE_DIR "${PROJECT_SOURCE_DIR}/lua/src")
  16. +# set(LUA_LIBRARY "lua")
  17.  
  18. configure_file(
  19. "${PROJECT_SOURCE_DIR}/cmake_config.h.in"
  20. @@ -504,19 +504,19 @@
  21.  
  22. # Subdirectories
  23.  
  24. -if (JTHREAD_FOUND)
  25. -else (JTHREAD_FOUND)
  26. - add_subdirectory(jthread)
  27. -endif (JTHREAD_FOUND)
  28. +#if (JTHREAD_FOUND)
  29. +#else (JTHREAD_FOUND)
  30. +# add_subdirectory(jthread)
  31. +#endif (JTHREAD_FOUND)
  32.  
  33. if (SQLITE3_FOUND)
  34. else (SQLITE3_FOUND)
  35. add_subdirectory(sqlite)
  36. endif (SQLITE3_FOUND)
  37.  
  38. -if (LUA_FOUND)
  39. -else (LUA_FOUND)
  40. - add_subdirectory(lua)
  41. -endif (LUA_FOUND)
  42. +#if (LUA_FOUND)
  43. +#else (LUA_FOUND)
  44. +# add_subdirectory(lua)
  45. +#endif (LUA_FOUND)
  46.  
  47. #end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement