diff options
| author | Andreas Schneider <mail@cynapses.org> | 2010-03-25 09:52:05 +0100 |
|---|---|---|
| committer | Andreas Schneider <mail@cynapses.org> | 2010-03-25 09:52:05 +0100 |
| commit | f096e031ed9649f22fe56cc476d088b56f0c8c28 (patch) | |
| tree | 17bb616a605135acaaa2b6b80093f5efc89dbb2d | |
| parent | a8be476ea953989499a3e9ffc3b2b25be4d4528c (diff) | |
Fixed a typo that we don't export all symbols.
| -rw-r--r-- | ConfigureChecks.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index c2bed2ec..07fb7bf7 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -16,9 +16,9 @@ set(SYSCONFDIR ${SYSCONF_INSTALL_DIR}) set(BINARYDIR ${CMAKE_BINARY_DIR}) set(SOURCEDIR ${CMAKE_SOURCE_DIR}) -if(CMAKE_COMPILER_IS_GNUC) +if(CMAKE_COMPILER_IS_GNUCC) check_c_compiler_flag("-fvisibility=hidden" WITH_VISIBILITY_HIDDEN) -endif(CMAKE_COMPILER_IS_GNUC) +endif(CMAKE_COMPILER_IS_GNUCC) # HEADER FILES check_include_file(argp.h HAVE_ARGP_H) |
