You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
387 B
10 lines
387 B
# Disable warnings to avoid changing 3rd party code.
|
|
if(CMAKE_C_COMPILER_ID MATCHES
|
|
"^(GNU|LCC|Clang|AppleClang|IBMClang|XLClang|XL|VisualAge|SunPro|HP|Intel|IntelLLVM|NVHPC)$")
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -w")
|
|
elseif(CMAKE_C_COMPILER_ID STREQUAL "PathScale")
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -woffall")
|
|
endif()
|
|
|
|
add_library(cmllpkgc STATIC llpkgc.c llpkgc__internal.c)
|