From 766e0ac9189fabdc61b8a383cbd4a1ecb5eebef9 Mon Sep 17 00:00:00 2001 From: philippelatulippe Date: Fri, 22 Apr 2011 17:19:23 -0400 Subject: [PATCH] cmake: Fix case sensitive string (PHYSX->Physx) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 66ab43a7..6dcaed0a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ find_package(OpenAL REQUIRED) find_package(PythonLibs REQUIRED) find_package(EXPAT REQUIRED) find_package(ZLIB REQUIRED) -find_package(PHYSX REQUIRED) #TODO: Not required if we aren't building the client +find_package(PhysX REQUIRED) #TODO: Not required if we aren't building the client find_package(Ogg REQUIRED) #TODO: Not required if we aren't building the client find_package(Vorbis REQUIRED) #TODO: Not required if we aren't building the client find_package(Speex REQUIRED) #TODO: Not required if we aren't building the client