Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workaround for config_types.h.in to use CMake and configure side-by-side #81

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 19 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,25 @@ endfunction()

message(STATUS "Configuring ${PROJECT_NAME} ${PROJECT_VERSION}")

# Configure config_type.h
check_include_files(inttypes.h INCLUDE_INTTYPES_H)
check_include_files(stdint.h INCLUDE_STDINT_H)
check_include_files(sys/types.h INCLUDE_SYS_TYPES_H)
# Configure config_type.h (workaround to work both configure and cmake)
set(INCLUDE_INTTYPES_H 0)
set(INCLUDE_STDINT_H 0)
set(INCLUDE_SYS_TYPES_H 0)
check_include_files(inttypes.h INCLUDE_INTTYPES_H_)
check_include_files(stdint.h INCLUDE_STDINT_H_)
check_include_files(sys/types.h INCLUDE_SYS_TYPES_H_)

if(INCLUDE_INTTYPES_H_ EQUAL 1)
set(INCLUDE_INTTYPES_H 1)
endif()

if(INCLUDE_STDINT_H_ EQUAL 1)
set(INCLUDE_STDINT_H 1)
endif()

if(INCLUDE_SYS_TYPES_H_ EQUAL 1)
set(INCLUDE_SYS_TYPES_H 1)
endif()

list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
set(SIZE16 int16_t)
Expand Down