Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
4d82547da86947193dbcfe3d7a5ea6373a4cd198
[simgrid.git] / buildtools / CPACK / src / CMakeOption.txt
1 ### ARGs use -D[var]=[ON/OFF] or [1/0] or [true/false](see after)
2 ### ex: cmake -Ddisable_java=ON -Ddisable_gtnets=ON ./
3
4 if(disable_gtnets)
5         set(gtnets_path "none" CACHE TYPE INTERNAL FORCE)       
6 endif(disable_gtnets)
7
8 if(NOT with_context)
9         set(with_context "auto" CACHE TYPE INTERNAL FORCE)
10 endif(NOT with_context)
11
12 option(init "Set ON for make _*.c with gras_stub_generator" off)
13 option(enable_maintainer_mode "Permit to make flex and flexml files." off)
14 option(supernovae "Supernovae mode." off)
15 option(disable_java "This variable set the java context." off)
16 option(disable_lua "This variable set lua use." off)
17 option(enable_compile_warnings "" off)
18 option(enable_compile_optimizations "" off)
19 option(disable_gtnets "This variable set the gtnets context." off)
20 option(disable_ruby "This variable set ruby use." on)