15 lines
436 B
CMake
15 lines
436 B
CMake
# Minimal CMake build file to build static cppcheck library
|
|
# This static library is used to build executables:
|
|
# - cli
|
|
# - tests
|
|
# - Qt GUI
|
|
|
|
set(CPPCHECK_LIB_DIR "")
|
|
include("library_sources.cmake")
|
|
|
|
if (CMAKE_COMPILER_IS_GNUCXX)
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -pedantic -Wshadow -Wno-long-long -Wfloat-equal -Wcast-qual")
|
|
endif (CMAKE_COMPILER_IS_GNUCXX)
|
|
|
|
add_library(checklib STATIC ${CPPCHECK_LIB_SOURCES})
|