2019-10-25 23:46:10 +02:00
|
|
|
#
|
|
|
|
# Author: Benjamin Sergeant
|
|
|
|
# Copyright (c) 2019 Machine Zone, Inc. All rights reserved.
|
|
|
|
#
|
|
|
|
|
|
|
|
set (IXSENTRY_SOURCES
|
|
|
|
ixsentry/IXSentryClient.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
set (IXSENTRY_HEADERS
|
|
|
|
ixsentry/IXSentryClient.h
|
|
|
|
)
|
|
|
|
|
|
|
|
add_library(ixsentry STATIC
|
|
|
|
${IXSENTRY_SOURCES}
|
|
|
|
${IXSENTRY_HEADERS}
|
|
|
|
)
|
|
|
|
|
|
|
|
set(IXSENTRY_INCLUDE_DIRS
|
|
|
|
.
|
2019-10-26 20:47:08 +02:00
|
|
|
..
|
2019-11-26 06:08:43 +01:00
|
|
|
../ixcore
|
|
|
|
../third_party)
|
2019-10-25 23:46:10 +02:00
|
|
|
|
|
|
|
target_include_directories( ixsentry PUBLIC ${IXSENTRY_INCLUDE_DIRS} )
|