diff options
author | Erik de Castro Lopo <erikd@mega-nerd.com> | 2019-07-22 18:48:16 +1000 |
---|---|---|
committer | Erik de Castro Lopo <erikd@mega-nerd.com> | 2019-07-22 18:48:16 +1000 |
commit | df53eebf72e86eb179465f53dd77297ae72ae233 (patch) | |
tree | ca728ef082d664215afade1f9312f4ffb9b93ec1 | |
parent | ec2d16de7c530ed53cbc968abc120d3b2a7c7c97 (diff) | |
download | ogg-git-df53eebf72e86eb179465f53dd77297ae72ae233.tar.gz |
CMakeLists.txt: Add detection of uint64_t
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 802f71a..791f056 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -63,6 +63,7 @@ set(USIZE16 uint16_t) set(SIZE32 int32_t) set(USIZE32 uint32_t) set(SIZE64 int64_t) +set(USIZE64 uint64_t) configure_file(include/ogg/config_types.h.in ${CMAKE_CURRENT_BINARY_DIR}/include/ogg/config_types.h @ONLY) |