vcpkg/ports/vlpp/CMakeLists.txt

43 lines
942 B
CMake
Raw Normal View History

2017-12-01 18:18:53 +08:00
cmake_minimum_required(VERSION 3.3.0)
project(Vlpp VERSION 0.10.0.0 LANGUAGES CXX)
2017-12-01 18:18:53 +08:00
# Sources
set(SRCS
Import/Vlpp.cpp
Import/VlppWorkflowLibrary.cpp
Import/VlppWorkflowCompiler.cpp
Import/VlppWorkflowRuntime.cpp)
2018-05-07 14:23:11 +08:00
if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /bigobj")
endif()
2017-12-01 18:18:53 +08:00
# Create and configure the target
add_library(Vlpp ${SRCS})
# target_compile_definitions
target_compile_definitions(Vlpp PRIVATE UNICODE)
target_compile_definitions(Vlpp PRIVATE _UNICODE)
target_include_directories(Vlpp PRIVATE ${PROJECT_SOURCE_DIR}/Import)
# Install
install(
TARGETS Vlpp
RUNTIME DESTINATION "bin"
LIBRARY DESTINATION "lib"
ARCHIVE DESTINATION "lib"
)
if (NOT DEFINED SKIP_HEADERS)
install(
FILES
Import/Vlpp.h
Import/VlppWorkflowLibrary.h
2017-12-01 18:18:53 +08:00
Import/VlppWorkflowCompiler.h
Import/VlppWorkflowRuntime.h
2017-12-01 18:18:53 +08:00
DESTINATION "include"
)
endif()