mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
instead of adding an extra CMakeLists in .ci/travis/code_layout to build API doc, astyle and run tests (indentation, spelling, sip, doc coverage), the top CMakeLists has been adapted to allow not building core libraries and possibly just the static code layout * astyle has been moved from /src/astyle to /lib/astyle (I would propose to move all external libraries, and possibly add git submodules)
12 lines
166 B
CMake
12 lines
166 B
CMake
IF (ENABLE_TESTS)
|
|
|
|
IF (WITH_CORE)
|
|
ADD_SUBDIRECTORY(src)
|
|
ADD_SUBDIRECTORY(bench)
|
|
ENDIF (WITH_CORE)
|
|
|
|
ADD_SUBDIRECTORY(code_layout)
|
|
ENDIF (ENABLE_TESTS)
|
|
|
|
|