diff options
| author | Dusan Durech <dusan.d@centrum.sk> | 2008-11-09 15:48:16 +0100 |
|---|---|---|
| committer | Dusan Durech <dusan.d@centrum.sk> | 2008-11-09 15:48:16 +0100 |
| commit | 77459ad09cbcc1004801f527ce82caa2cbdf6451 (patch) | |
| tree | 2fa6efec9e66b813f552cf17111776ea71249bf9 /CMakeLists.txt | |
| parent | 74693f80cd8188303b3e164f478988133aef4c84 (diff) | |
support openGL rendering with makro SUPPORT_OPENGL, uses code in opengl branch
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 9422473..210f604 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -123,9 +123,17 @@ IF ( Apple ) ADD_DEFINITIONS ( -DAPPLE ) ENDIF ( Apple ) ############################################################################### -# SDL SEARCH +# LIBS SEARCH ############################################################################### +MESSAGE ( STATUS "<Locating ZZIP library>" ) +MESSAGE ( STATUS "<******************************>" ) FIND_PACKAGE ( ZZIP REQUIRED ) +MESSAGE ( STATUS "<Locating OpenGL stuff>" ) +MESSAGE ( STATUS "<******************************>" ) +FIND_PACKAGE ( OpenGL REQUIRED ) +FIND_PACKAGE ( GLU REQUIRED ) +MESSAGE ( STATUS "<Locating SDL stuff>" ) +MESSAGE ( STATUS "<******************************>" ) IF ( NOT Server ) FIND_PACKAGE ( SDL REQUIRED ) |