From d22912349bd909f5ac159b7dcbd1b38422c2a649 Mon Sep 17 00:00:00 2001 From: Luis Ibanez Date: Sun, 5 Sep 2010 20:15:05 +0000 Subject: ENH: Grouping the logic that detects getopt.c into a single .cmake file. Multiple directories were repeating this configuration independently. The directory jp3d is expected to be self-suficient so it still does the configuration directly. --- JavaOpenJPEG/CMakeLists.txt | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'JavaOpenJPEG') diff --git a/JavaOpenJPEG/CMakeLists.txt b/JavaOpenJPEG/CMakeLists.txt index 24058463..c115e4aa 100644 --- a/JavaOpenJPEG/CMakeLists.txt +++ b/JavaOpenJPEG/CMakeLists.txt @@ -4,20 +4,9 @@ SET(common_SRCS convert.c ) -# Then check if getopt is present: -INCLUDE (${CMAKE_ROOT}/Modules/CheckIncludeFile.cmake) -SET(DONT_HAVE_GETOPT 1) -IF(UNIX) #I am pretty sure only *nix sys have this anyway - CHECK_INCLUDE_FILE("getopt.h" CMAKE_HAVE_GETOPT_H) - # Seems like we need the contrary: - IF(CMAKE_HAVE_GETOPT_H) - SET(DONT_HAVE_GETOPT 0) - ENDIF(CMAKE_HAVE_GETOPT_H) -ENDIF(UNIX) # If not getopt was found then add it to the lib: IF(DONT_HAVE_GETOPT) - ADD_DEFINITIONS(-DDONT_HAVE_GETOPT) SET(common_SRCS ${common_SRCS} compat/getopt.c -- cgit v1.2.3