early-access version 2853

This commit is contained in:
pineappleEA
2022-07-23 03:01:36 +02:00
parent 1f2b5081b5
commit 1f111bb69c
8955 changed files with 418777 additions and 999 deletions

22
externals/vcpkg/ports/pqp/CMakeLists.txt vendored Executable file
View File

@@ -0,0 +1,22 @@
cmake_minimum_required(VERSION 3.0)
project(pqp)
set(SOURCE_CUSTOM_DIR "PQP_v1.3")
include_directories(${SOURCE_CUSTOM_DIR}/src)
file(GLOB SRCS
"${SOURCE_CUSTOM_DIR}/src/*.cpp")
file(GLOB HDRS
"${SOURCE_CUSTOM_DIR}/src/*.h")
add_library(pqp STATIC ${SRCS})
install(TARGETS pqp EXPORT pqpConfig
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib)
foreach (file ${HDRS})
get_filename_component(dir ${file} DIRECTORY)
install(FILES ${file} DESTINATION include/ CONFIGURATIONS Release)
endforeach()