1CodeLite 2---------- 3 4Generates CodeLite project files. 5 6Project files for CodeLite will be created in the top directory and 7in every subdirectory which features a CMakeLists.txt file containing 8a :command:`project` call. 9The appropriate make program can build the 10project through the default ``all`` target. An ``install`` target 11is also provided. 12 13.. versionadded:: 3.7 14 The :variable:`CMAKE_CODELITE_USE_TARGETS` variable may be set to ``ON`` 15 to change the default behavior from projects to targets as the basis 16 for project files. 17 18This "extra" generator may be specified as: 19 20``CodeLite - MinGW Makefiles`` 21 Generate with :generator:`MinGW Makefiles`. 22 23``CodeLite - NMake Makefiles`` 24 Generate with :generator:`NMake Makefiles`. 25 26``CodeLite - Ninja`` 27 Generate with :generator:`Ninja`. 28 29``CodeLite - Unix Makefiles`` 30 Generate with :generator:`Unix Makefiles`. 31