mirror of
https://github.com/danmar/cppcheck.git
synced 2025-01-16 01:23:23 +08:00
16 lines
280 B
CMake
16 lines
280 B
CMake
|
# Minimal CMake build file
|
||
|
# Builds static library from lib directory and commandline executable
|
||
|
|
||
|
# To build with CMake:
|
||
|
# - install CMake 2.6 or later
|
||
|
# - $ cmake .
|
||
|
# - $ make
|
||
|
|
||
|
cmake_minimum_required (VERSION 2.6)
|
||
|
|
||
|
PROJECT(CPPCHECK)
|
||
|
|
||
|
ADD_SUBDIRECTORY(lib)
|
||
|
ADD_SUBDIRECTORY(cli)
|
||
|
|