summaryrefslogtreecommitdiff
path: root/Build/source/libs/xpdf/xpdf-src/goo/CMakeLists.txt
blob: 0a1c56b0ebd321650b9e4fcf3c8d917b168ff3e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#========================================================================
#
# goo/CMakeLists.txt
#
# CMake script for the goo library.
#
# Copyright 2015 Glyph & Cog, LLC
#
#========================================================================

include_directories("${PROJECT_SOURCE_DIR}")
include_directories("${PROJECT_BINARY_DIR}")

add_library(goo_objs OBJECT
  FixedPoint.cc
  GHash.cc
  GList.cc
  GString.cc
  gfile.cc
  gmem.cc
  gmempp.cc
  parseargs.c
  Trace.cc
)

add_library(goo
  $<TARGET_OBJECTS:goo_objs>
)