diff options
author | Calvin Morrison <calvin@pobox.com> | 2023-04-05 14:13:39 -0400 |
---|---|---|
committer | Calvin Morrison <calvin@pobox.com> | 2023-04-05 14:13:39 -0400 |
commit | 835e373b3eeaabcd0621ed6798ab500f37982fae (patch) | |
tree | dfa16b0e2e1b4956b38f693220eac4e607802133 /fofi/CMakeLists.txt |
Diffstat (limited to 'fofi/CMakeLists.txt')
-rw-r--r-- | fofi/CMakeLists.txt | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/fofi/CMakeLists.txt b/fofi/CMakeLists.txt new file mode 100644 index 0000000..fd61b25 --- /dev/null +++ b/fofi/CMakeLists.txt @@ -0,0 +1,28 @@ +#======================================================================== +# +# fofi/CMakeLists.txt +# +# CMake script for the fofi library. +# +# Copyright 2015 Glyph & Cog, LLC +# +#======================================================================== + +include_directories("${PROJECT_SOURCE_DIR}") +include_directories("${PROJECT_BINARY_DIR}") +include_directories("${PROJECT_SOURCE_DIR}/goo") + +add_library(fofi_objs OBJECT + FoFiBase.cc + FoFiEncodings.cc + FoFiIdentifier.cc + FoFiTrueType.cc + FoFiType1.cc + FoFiType1C.cc +) +set_property(TARGET fofi_objs + PROPERTY POSITION_INDEPENDENT_CODE True) + +add_library(fofi + $<TARGET_OBJECTS:fofi_objs> +) |