Skip to content

Commit

Permalink
Fixed a problem in some CMake versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Apr 21, 2009
1 parent d26781a commit 652f0ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Expand Up @@ -67,9 +67,9 @@ IF(CMAKE_COMPILER_IS_GNUCC)
" PHYSFS_IS_GCC4)

IF(PHYSFS_IS_GCC4)
IF((NOT OS2) AND (NOT SOLARIS)) # Not supported on OS/2 or Solaris.
IF(NOT OS2 AND NOT SOLARIS) # Not supported on OS/2 or Solaris.
ADD_DEFINITIONS(-fvisibility=hidden)
ENDIF((NOT OS2) AND (NOT SOLARIS))
ENDIF(NOT OS2 AND NOT SOLARIS)
ENDIF(PHYSFS_IS_GCC4)
ENDIF(CMAKE_COMPILER_IS_GNUCC)

Expand Down

0 comments on commit 652f0ec

Please sign in to comment.