Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for cmake depends #1347

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ set(TORQUE_SOURCE_DIRECTROY "${CMAKE_SOURCE_DIR}/Engine/source")
# Ensure all possible configurations end up in the project directory
set(CMAKE_INSTALL_PREFIX "${TORQUE_APP_ROOT_DIRECTORY}" CACHE STRING "" FORCE)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${TORQUE_APP_GAME_DIRECTORY}")
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/Tools/CMake/finders")
foreach( OUTPUTCONFIG ${CMAKE_CONFIGURATION_TYPES} )
string( TOUPPER ${OUTPUTCONFIG} OUTPUTCONFIG )
set( CMAKE_RUNTIME_OUTPUT_DIRECTORY_${OUTPUTCONFIG} "${TORQUE_APP_GAME_DIRECTORY}" )
Expand Down
2 changes: 0 additions & 2 deletions Engine/lib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ set(ZLIB_ROOT "${ZLIB_ROOT}" CACHE STRING "ZLib root location" FORCE)
mark_as_advanced(ZLIB_ROOT)
# Png depends on zlib
add_subdirectory(zlib ${TORQUE_LIB_TARG_DIRECTORY}/zlib EXCLUDE_FROM_ALL)
set(ZLIB_FOUND 1)
set(ZLIB_LIBRARIES zlib)

if(APPLE)
enable_language(OBJC)
Expand Down
13 changes: 13 additions & 0 deletions Tools/CMake/finders/findFLAC.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
if(TARGET FLAC)
set(FLAC_FOUND TRUE)
set(FLAC_INCLUDE_DIRS $<TARGET_PROPERTY:FLAC,INTERFACE_INCLUDE_DIRECTORIES>)
set(FLAC_LIBRARIES FLAC)

# Provide an alias for consistency with modern CMake
if(NOT TARGET FLAC::FLAC)
add_library(FLAC::FLAC ALIAS FLAC)
endif()
else()
set(FLAC_FOUND FALSE)
message(FATAL_ERROR "Flac was not added with add_subdirectory before calling find_package(FLAC).")
endif()
13 changes: 13 additions & 0 deletions Tools/CMake/finders/findOGG.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
if(TARGET ogg)
set(OGG_FOUND TRUE)
set(OGG_INCLUDE_DIRS $<TARGET_PROPERTY:ogg,INTERFACE_INCLUDE_DIRECTORIES>)
set(OGG_LIBRARIES ogg)

# Provide an alias for consistency with modern CMake
if(NOT TARGET OGG::OGG)
add_library(OGG::OGG ALIAS ogg)
endif()
else()
set(OGG_FOUND FALSE)
message(FATAL_ERROR "Ogg was not added with add_subdirectory before calling find_package(Ogg).")
endif()
13 changes: 13 additions & 0 deletions Tools/CMake/finders/findOPUS.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
if(TARGET opus)
set(OPUS_FOUND TRUE)
set(OPUS_INCLUDE_DIRS $<TARGET_PROPERTY:opus,INTERFACE_INCLUDE_DIRECTORIES>)
set(OPUS_LIBRARIES opus)

# Provide an alias for consistency with modern CMake
if(NOT TARGET OPUS::OPUS)
add_library(OPUS::OPUS ALIAS opus)
endif()
else()
set(OPUS_FOUND FALSE)
message(FATAL_ERROR "Opus was not added with add_subdirectory before calling find_package(Opus).")
endif()
13 changes: 13 additions & 0 deletions Tools/CMake/finders/findPCRE.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
if(TARGET pcre)
set(PCRE_FOUND TRUE)
set(PCRE_INCLUDE_DIRS $<TARGET_PROPERTY:pcre,INTERFACE_INCLUDE_DIRECTORIES>)
set(PCRE_LIBRARIES pcre)

# Provide an alias for consistency with modern CMake
if(NOT TARGET PCRE::PCRE)
add_library(PCRE::PCRE ALIAS pcre)
endif()
else()
set(PCRE_FOUND FALSE)
message(FATAL_ERROR "PCRE was not added with add_subdirectory before calling find_package(PCRE).")
endif()
13 changes: 13 additions & 0 deletions Tools/CMake/finders/findVorbis.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
if(TARGET vorbis)
set(VORBIS_FOUND TRUE)
set(VORBIS_INCLUDE_DIRS $<TARGET_PROPERTY:vorbis,INTERFACE_INCLUDE_DIRECTORIES>)
set(VORBIS_LIBRARIES vorbis)

# Provide an alias for consistency with modern CMake
if(NOT TARGET VORBIS::VORBIS)
add_library(VORBIS::VORBIS ALIAS vorbis)
endif()
else()
set(VORBIS_FOUND FALSE)
message(FATAL_ERROR "Vorbis was not added with add_subdirectory before calling find_package(Vorbis).")
endif()
14 changes: 14 additions & 0 deletions Tools/CMake/finders/findZlib.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Ensure zlib has been added before using this module
if(TARGET zlib)
set(ZLIB_FOUND TRUE)
set(ZLIB_INCLUDE_DIRS $<TARGET_PROPERTY:zlib,INTERFACE_INCLUDE_DIRECTORIES>)
set(ZLIB_LIBRARIES zlib)
message(STATUS "Using Torques build of zlib.")
# Provide an alias for consistency with modern CMake
if(NOT TARGET ZLIB::ZLIB)
add_library(ZLIB::ZLIB ALIAS zlib)
endif()
else()
set(ZLIB_FOUND FALSE)
message(FATAL_ERROR "Zlib was not added with add_subdirectory before calling find_package(ZLIB).")
endif()
Loading