Passing CMake configure flags
Apologies if this is obvious.
I've tried various forms, for example:
-DENABLE_KDE=OFF
-DENABLE_
-DCMAKE_
-DWITH_KDE=OFF
-DWITH_
-DWITH_
-DENABLE-KDE=OFF
-DENABLE-
-DCMAKE-
-DWITH-KDE=OFF
-DWITH-
-DWITH-
and the same in lower case, with OFF replaced by 0...
after finding in CMakeLists.txt:
############# KDE-INTEGRATION #################
set (with_kde_
if (NOT "${enable-
if ("${KDE_
else()
set (VERSION_
set (PACKAGE_
set (with_kde_
set (kde_integratio
endif()
endif()
but each time I ended up with
-- - with KDE support: yes
Pardon me for missing something that I imagine is right in front of my eyes...but what flags need to be passed to disable plugins?
Question information
- Language:
- English Edit question
- Status:
- Solved
- Assignee:
- No assignee Edit question
- Solved by:
- Fabounet
- Solved:
- 2011-01-09
- Last query:
- 2011-01-09
- Last reply:
- 2011-01-07
|
#1 |
as you can see in the CMakeLists.txt file, there are lines like
if (NOT "${enable-
so you just have to do
cmake -Denable-
out of curiosity, why do you want to disable some plug-ins ?
Marb (tenebrarum) said : | #2 |
Thanks Fabounet, that solved my question.
Marb (tenebrarum) said : | #3 |
Hm, next time I'll type my reply before clicking on that button ...
...but anyway, I was experiencing the build problem in the python bindings that you appear to have fixed anyway. That aside, I'd rather not compile something I don't use, much less repeatedly.
Thanks :)