-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
201 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
cmake_minimum_required(VERSION 3.10) | ||
|
||
include(GNUInstallDirs) | ||
|
||
set(name agg) | ||
|
||
project(${name}) | ||
|
||
# find_package(utki CONFIG REQUIRED) | ||
|
||
file(GLOB_RECURSE srcs "../src/${name}/src/*.cpp") | ||
|
||
add_library( | ||
${name} | ||
STATIC | ||
${srcs} | ||
) | ||
|
||
target_compile_features(${name} PUBLIC cxx_std_17) | ||
set_target_properties(${name} PROPERTIES CXX_STANDARD_REQUIRED ON) | ||
set_target_properties(${name} PROPERTIES CXX_EXTENSIONS OFF) | ||
|
||
target_include_directories( | ||
${name} | ||
INTERFACE | ||
$<BUILD_INTERFACE:> | ||
$<INSTALL_INTERFACE:include> | ||
) | ||
|
||
# target_link_libraries( | ||
# ${name} | ||
# PUBLIC | ||
# utki::utki | ||
# ) | ||
|
||
# install library header files preserving directory hierarchy | ||
install( | ||
DIRECTORY | ||
"${CMAKE_CURRENT_SOURCE_DIR}/../include/${name}" | ||
DESTINATION | ||
"${CMAKE_INSTALL_INCLUDEDIR}" | ||
FILES_MATCHING PATTERN | ||
"*.hpp" | ||
) | ||
|
||
install( | ||
TARGETS | ||
${name} | ||
EXPORT # generate cmake configs | ||
${name}-config | ||
) | ||
|
||
# install cmake configs | ||
install( | ||
EXPORT | ||
${name}-config | ||
FILE | ||
${name}-config.cmake | ||
DESTINATION | ||
${CMAKE_INSTALL_DATAROOTDIR}/${name} | ||
NAMESPACE | ||
${name}:: | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
vcpkg_check_linkage(ONLY_STATIC_LIBRARY) | ||
|
||
vcpkg_from_github( | ||
OUT_SOURCE_PATH SOURCE_PATH | ||
REPO cppfw/${PORT} | ||
REF $(git_ref) | ||
SHA512 $(archive_hash) | ||
HEAD_REF main | ||
) | ||
|
||
vcpkg_cmake_configure( | ||
SOURCE_PATH "${SOURCE_PATH}/cmake" | ||
) | ||
|
||
vcpkg_cmake_install() | ||
|
||
vcpkg_cmake_config_fixup() | ||
|
||
# Delete the include directory from the debug installation to prevent overlap. | ||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") | ||
|
||
# Install the LICENSE file to the package's share directory and rename it to copyright. | ||
file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) | ||
|
||
# Copy the usage instruction file to the package's share directory. | ||
configure_file("${CMAKE_CURRENT_LIST_DIR}/usage" "${CURRENT_PACKAGES_DIR}/share/${PORT}/usage" COPYONLY) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
cmake_minimum_required(VERSION 3.10) | ||
|
||
set(CMAKE_TOOLCHAIN_FILE $ENV{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake) | ||
|
||
project(test) | ||
|
||
find_package(agg CONFIG REQUIRED) | ||
|
||
add_executable(test main.cpp) | ||
|
||
target_link_libraries(test PRIVATE agg::agg) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#include <agg/agg_trans_affine.hpp> | ||
|
||
using namespace std::string_view_literals; | ||
|
||
int main(int argc, const char** argv){ | ||
agg::trans_affine t(10, 20, 30, 40, 50, 60); | ||
|
||
t.reset(); | ||
|
||
std::cout << "t = " << t.sx << ", " << t.sy << ", " << t.tx << ", " << t.ty << ", " << t.shx << ", " << t.shy << std::endl; | ||
|
||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"default-registry": { | ||
"kind": "git", | ||
"baseline": "5e5d0e1cd7785623065e77eff011afdeec1a3574", | ||
"repository": "https://github.com/microsoft/vcpkg" | ||
}, | ||
"overlay-ports": [ | ||
"../overlay" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"dependencies": [ | ||
"agg" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
agg provides CMake targets: | ||
|
||
find_package(agg CONFIG REQUIRED) | ||
target_link_libraries(main PRIVATE agg::agg) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"name": "agg", | ||
"version": "$(version)", | ||
"homepage": "https://github.com/cppfw/agg", | ||
"description": "Antigrain Geometry vector graphics library in C++", | ||
"license": "MIT", | ||
"dependencies": [ | ||
{ | ||
"name" : "vcpkg-cmake", | ||
"host" : true | ||
}, | ||
{ | ||
"name" : "vcpkg-cmake-config", | ||
"host" : true | ||
} | ||
] | ||
} |