Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug Fix: fix relative paths
Browse files Browse the repository at this point in the history
BenjamenMeyer committed Oct 12, 2024
1 parent ef710c0 commit 94ede27
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions engine/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -272,7 +272,7 @@ IF (NOT USE_SYSTEM_BOOST)
UNSET(Boost_LIBRARIES)
UNSET(Boost_INCLUDE_DIR)
UNSET(Boost_LIBRARY_DIRS)
SET(Boost_DIR ../ext/)
SET(Boost_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../ext/)
SET(BOOST_PYTHON_NO_PY_SIGNATURES 1)
SET(TST_INCLUDES ${TST_INCLUDES} ${Vega_Strike_SOURCE_DIR}/${Boost_DIR})
MESSAGE("++ Using Internal Boost::python3")
@@ -1173,16 +1173,16 @@ ELSE (WIN32)
ENDIF (WIN32)


ADD_SUBDIRECTORY("../doc" "./doc")
ADD_SUBDIRECTORY("${CMAKE_CURRENT_SOURCE_DIR}/../doc" "./doc")

# As per https://braintrekking.wordpress.com/2013/04/27/dll-hell-how-to-include-microsoft-redistributable-runtime-libraries-in-your-cmakecpack-project/
INSTALL(FILES ${CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS} DESTINATION bin COMPONENT Libraries)

SET(CPACK_PACKAGE_NAME "Vega-Strike")
SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "3D OpenGL spaceflight simulator")
SET(CPACK_PACKAGE_VENDOR "Vega Strike")
SET(CPACK_PACKAGE_DESCRIPTION_FILE "../README.md")
SET(CPACK_RESOURCE_FILE_LICENSE "../LICENSE")
SET(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/../README.md")
SET(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/../LICENSE")
SET(CPACK_PACKAGE_VERSION_MAJOR "${VEGASTRIKE_VERSION_MAJOR}")
SET(CPACK_PACKAGE_VERSION_MINOR "${VEGASTRIKE_VERSION_MINOR}")
SET(CPACK_PACKAGE_VERSION_PATCH "${VEGASTRIKE_VERSION_PATCH}")

0 comments on commit 94ede27

Please sign in to comment.