Skip to content
bmiklautz edited this page Sep 11, 2012 · 16 revisions

There are several options you can specify when you create the Makefiles/Project Files with cmake. You can see some, but not all, if you use ccmake or the windows equivalent cmake-gui. The ones listed are mostly selfexplanatory, so lets focus her on the ones not listed. A build option WITH_XXX is specified as -DWITH_XXX=ON on the cmake command line.

  • WITH_MONOLITHIC_BUILD : This will build libfreerdp and libwinpr into one single dll each
  • CMAKE_BUILD_TYPE=Debug : Leave this empty for (optimized) Release build
  • WITH_SSE2 : Compile codecs (nsc, rfx) with sse2 optimizations
  • WITH_SSE2_TARGET : Compile code sse2 optimized (-msse2)
  • WITH_NEON : Compile codecs (rfx) with neon optimizations
  • WITH_THIRD_PARTY : Enable builing of third-party code located in third-party
  • WITH_JPEG : Enable jpeg codec
Clone this wiki locally