mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 04:19:00 +08:00
74 lines
1.9 KiB
CMake
74 lines
1.9 KiB
CMake
|
cmake_minimum_required(VERSION 3.20)
|
||
|
|
||
|
project(openfx VERSION 1.4.0 LANGUAGES CXX)
|
||
|
|
||
|
set(CMAKE_CXX_STANDARD 14)
|
||
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||
|
|
||
|
if(WIN32)
|
||
|
add_compile_definitions(WINDOWS NOMINMAX WIN64)
|
||
|
set(OS_VAR "windows")
|
||
|
set(OFX_ARCH_NAME "Win64")
|
||
|
endif()
|
||
|
|
||
|
set(OFX_HEADERS_DIR ${CMAKE_CURRENT_SOURCE_DIR}/include)
|
||
|
|
||
|
add_library(OpenFx INTERFACE)
|
||
|
target_include_directories(OpenFx
|
||
|
INTERFACE
|
||
|
$<BUILD_INTERFACE:${OFX_HEADERS_DIR}>
|
||
|
$<INSTALL_INTERFACE:include/openfx>
|
||
|
)
|
||
|
|
||
|
set(OFX_SUPPORT_HEADERS_DIR ${CMAKE_CURRENT_SOURCE_DIR}/Support/include)
|
||
|
|
||
|
add_library(OfxSupport STATIC
|
||
|
Support/Library/ofxsCore.cpp
|
||
|
Support/Library/ofxsImageEffect.cpp
|
||
|
Support/Library/ofxsInteract.cpp
|
||
|
Support/Library/ofxsLog.cpp
|
||
|
Support/Library/ofxsMultiThread.cpp
|
||
|
Support/Library/ofxsParams.cpp
|
||
|
Support/Library/ofxsProperty.cpp
|
||
|
Support/Library/ofxsPropertyValidation.cpp
|
||
|
)
|
||
|
target_include_directories(OfxSupport
|
||
|
PUBLIC
|
||
|
$<BUILD_INTERFACE:${OFX_HEADERS_DIR}>
|
||
|
$<BUILD_INTERFACE:${OFX_SUPPORT_HEADERS_DIR}>
|
||
|
$<INSTALL_INTERFACE:include/openfx>
|
||
|
)
|
||
|
target_link_libraries(OfxSupport INTERFACE OpenFx)
|
||
|
target_compile_features(OfxSupport PUBLIC cxx_std_11)
|
||
|
|
||
|
install(
|
||
|
TARGETS OpenFx OfxSupport
|
||
|
EXPORT openfx-export
|
||
|
LIBRARY DESTINATION lib
|
||
|
ARCHIVE DESTINATION lib
|
||
|
)
|
||
|
|
||
|
install(
|
||
|
EXPORT openfx-export
|
||
|
FILE unofficial-openfxConfig.cmake
|
||
|
NAMESPACE unofficial::openfx::
|
||
|
DESTINATION "share/unofficial-openfx"
|
||
|
)
|
||
|
|
||
|
file(GLOB OFX_HEADERS "${OFX_HEADERS_DIR}/*.h" "${OFX_SUPPORT_HEADERS_DIR}/*.h")
|
||
|
install(FILES ${OFX_HEADERS}
|
||
|
DESTINATION include/openfx
|
||
|
)
|
||
|
|
||
|
include(CMakePackageConfigHelpers)
|
||
|
|
||
|
write_basic_package_version_file(
|
||
|
"${CMAKE_CURRENT_BINARY_DIR}/unofficial-openfxConfigVersion.cmake"
|
||
|
VERSION ${PROJECT_VERSION}
|
||
|
COMPATIBILITY AnyNewerVersion
|
||
|
)
|
||
|
install(
|
||
|
FILES "${CMAKE_CURRENT_BINARY_DIR}/unofficial-openfxConfigVersion.cmake"
|
||
|
DESTINATION "share/unofficial-openfx"
|
||
|
)
|