Files
opennurbs/android_uuid/CMakeLists.txt
Bozo The Builder 6c3cec9905 Sync changes from upstream repository
Co-authored-by: Andrew Le Bihan <andy@mcneel.com>
Co-authored-by: croudyj <croudyj@gmail.com>
Co-authored-by: Dale Lear <dalelear@mcneel.com>
Co-authored-by: David Eränen <david.eranen@mcneel.com>
Co-authored-by: Giulio Piacentino <giulio@mcneel.com>
Co-authored-by: Greg Arden <greg@mcneel.com>
Co-authored-by: Jussi Aaltonen <jussi@mcneel.com>
Co-authored-by: kike-garbo <kike@mcneel.com>
Co-authored-by: Mikko Oksanen <mikko@mcneel.com>
Co-authored-by: Pierre Cuvilliers <pierre@mcneel.com>
Co-authored-by: sodermax <max.soderstrom@mcneel.com>
Co-authored-by: steve <steve@mcneel.com>
Co-authored-by: Steve Baer <steve@mcneel.com>
Co-authored-by: Will Pearson <will@mcneel.com>
2023-02-23 16:10:31 -08:00

35 lines
565 B
CMake

cmake_minimum_required (VERSION 3.4)
project( android_uuid C)
set( INCLUDE_DIRS
.
)
set( SOURCES
copy.c
gen_uuid.c
isnull.c
pack.c
parse.c
unpack.c
unparse.c
uuid_time.c
)
set(CMAKE_POSITION_INDEPENDENT_CODE ON) # -fPIC
add_library( android_uuid STATIC
${SOURCES}
)
#target_compile_definitions(android_uuid PRIVATE Z_PREFIX MY_ZCALLOC)
target_include_directories( android_uuid
PUBLIC
.
)
install( TARGETS android_uuid DESTINATION "lib")
install( FILES DESTINATION "include/android_uuid")