mirror of
https://gitee.com/openharmony/third_party_spirv-headers
synced 2024-11-23 07:30:08 +00:00
bd2574ebd3
Signed-off-by: wangshi <wangshi@kaihong.com>
27 lines
553 B
CMake
27 lines
553 B
CMake
cmake_minimum_required(VERSION 3.0)
|
|
|
|
set(CMAKE_INSTALL_PREFIX "install" CACHE STRING "prefix" FORCE)
|
|
|
|
project(buildSpvHeaders)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
jsonToSpirv.cpp
|
|
header.cpp
|
|
jsoncpp/dist/jsoncpp.cpp)
|
|
|
|
set(HEADERS
|
|
jsonToSpirv.h
|
|
header.h
|
|
jsoncpp/dist/json/json.h)
|
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX)
|
|
add_definitions(-std=c++11)
|
|
elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
|
add_definitions(-std=c++11)
|
|
endif()
|
|
|
|
add_executable(buildSpvHeaders ${SOURCES} ${HEADERS})
|
|
|
|
install(TARGETS buildSpvHeaders RUNTIME DESTINATION bin)
|