Browse Source

Apparently these need to be at the top to work in a purely

command-line (msbuild) environment
Michael Hansen 10 years ago
parent
commit
07810ffd9c
  1. 1
      CMakeLists.txt
  2. 3
      Sources/Plasma/PubUtilLib/plGImage/CMakeLists.txt

1
CMakeLists.txt

@ -40,6 +40,7 @@ find_package(OpenAL REQUIRED)
find_package(PythonLibs REQUIRED)
find_package(EXPAT REQUIRED)
find_package(ZLIB REQUIRED)
find_package(JPEG REQUIRED)
find_package(PNG REQUIRED)
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

3
Sources/Plasma/PubUtilLib/plGImage/CMakeLists.txt

@ -3,10 +3,7 @@ include_directories("../../NucleusLib/inc")
include_directories("../../NucleusLib")
include_directories("../../PubUtilLib")
find_package(JPEG REQUIRED)
include_directories(${JPEG_INCLUDE_DIR})
find_package(PNG REQUIRED)
include_directories(${PNG_INCLUDE_DIR})
set(plGImage_SOURCES

Loading…
Cancel
Save