Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
Ogg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sip
Ogg
Commits
914a5c27
Commit
914a5c27
authored
Jul 22, 2019
by
Erik de Castro Lopo
Browse files
Options
Downloads
Patches
Plain Diff
CMakeLists.txt: Add detection of uint64_t
parent
688208e6
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+6
-0
6 additions, 0 deletions
CMakeLists.txt
with
6 additions
and
0 deletions
CMakeLists.txt
+
6
−
0
View file @
914a5c27
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment