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.
12 lines
334 B
12 lines
334 B
if(NOT CMAKE_CLC_COMPILE_OBJECT)
|
|
set(CMAKE_CLC_COMPILE_OBJECT
|
|
"<CMAKE_CLC_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -o <OBJECT> -c <SOURCE> -emit-llvm")
|
|
endif()
|
|
|
|
if(NOT CMAKE_CLC_CREATE_STATIC_LIBRARY)
|
|
set(CMAKE_CLC_CREATE_STATIC_LIBRARY
|
|
"<CMAKE_CLC_ARCHIVE> -o <TARGET> <OBJECTS>")
|
|
endif()
|
|
|
|
set(CMAKE_INCLUDE_FLAG_CLC "-I")
|