Skip to content
Snippets Groups Projects
Commit 914a5c27 authored by Erik de Castro Lopo's avatar Erik de Castro Lopo
Browse files

CMakeLists.txt: Add detection of uint64_t

parent 688208e6
No related branches found
No related tags found
No related merge requests found
...@@ -59,6 +59,12 @@ check_include_files(stdint.h INCLUDE_STDINT_H) ...@@ -59,6 +59,12 @@ check_include_files(stdint.h INCLUDE_STDINT_H)
check_include_files(sys/types.h INCLUDE_SYS_TYPES_H) check_include_files(sys/types.h INCLUDE_SYS_TYPES_H)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake") list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
set(SIZE16 int16_t)
set(USIZE16 uint16_t)
set(SIZE32 int32_t)
set(USIZE32 uint32_t)
set(SIZE64 int64_t)
set(USIZE64 uint64_t)
include(CheckSizes) include(CheckSizes)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment