mirror of
https://git.freebsd.org/ports.git
synced 2025-06-15 17:50:31 -04:00
59 lines
2.5 KiB
Text
59 lines
2.5 KiB
Text
--- CMakeLists.txt.orig 2021-07-15 08:12:45 UTC
|
|
+++ CMakeLists.txt
|
|
@@ -72,7 +72,7 @@ string(REGEX REPLACE "^<version>([0-9]+)\\.([0-9]+)\\.
|
|
set(DART_VERSION "${DART_MAJOR_VERSION}.${DART_MINOR_VERSION}.${DART_PATCH_VERSION}")
|
|
|
|
set(DART_PKG_DESC "Dynamic Animation and Robotics Toolkit.")
|
|
-set(DART_PKG_EXTERNAL_DEPS "eigen, ccd, fcl, assimp, boost")
|
|
+set(DART_PKG_EXTERNAL_DEPS "eigen3, ccd, fcl, assimp")
|
|
|
|
#===============================================================================
|
|
# Build options
|
|
@@ -213,7 +213,7 @@ elseif(CMAKE_COMPILER_IS_GNUCXX)
|
|
if(GCC_VERSION VERSION_LESS 5.3.1)
|
|
message(FATAL_ERROR "The installed g++ version is ${GCC_VERSION}. ${PROJECT_NAME} requires g++ 5.3.1 or greater.")
|
|
endif()
|
|
- set(CMAKE_CXX_FLAGS_RELEASE "-O3 -DNDEBUG")
|
|
+ set(CMAKE_CXX_FLAGS_RELEASE "-DNDEBUG")
|
|
set(CMAKE_CXX_FLAGS_DEBUG "-g -fno-omit-frame-pointer -fno-inline-functions -fno-inline-functions-called-once -fno-optimize-sibling-calls")
|
|
if(DART_FAST_DEBUG)
|
|
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -O1")
|
|
@@ -243,7 +243,7 @@ elseif("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang")
|
|
if("${CMAKE_SYSTEM_NAME}" MATCHES "Darwin")
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++")
|
|
endif()
|
|
- set(CMAKE_CXX_FLAGS_RELEASE "-O3 -DNDEBUG")
|
|
+ set(CMAKE_CXX_FLAGS_RELEASE "-DNDEBUG")
|
|
set(CMAKE_CXX_FLAGS_DEBUG "-g -fno-omit-frame-pointer -fno-inline-functions -fno-optimize-sibling-calls")
|
|
if(DART_FAST_DEBUG)
|
|
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -O1")
|
|
@@ -312,20 +312,20 @@ if(TARGET dart)
|
|
if(MSVC)
|
|
# add_subdirectory(examples)
|
|
else()
|
|
- add_subdirectory(examples EXCLUDE_FROM_ALL)
|
|
- get_property(examples GLOBAL PROPERTY DART_EXAMPLES)
|
|
- add_custom_target(examples DEPENDS ${examples})
|
|
+ #add_subdirectory(examples EXCLUDE_FROM_ALL)
|
|
+ #get_property(examples GLOBAL PROPERTY DART_EXAMPLES)
|
|
+ #add_custom_target(examples DEPENDS ${examples})
|
|
endif()
|
|
|
|
if(DART_VERBOSE)
|
|
message(STATUS "")
|
|
message(STATUS "[ Examples ]")
|
|
- foreach(example ${examples})
|
|
- message(STATUS "Adding example: ${example}")
|
|
- endforeach(example ${examples})
|
|
- else(DART_VERBOSE)
|
|
- list(LENGTH examples examples_length)
|
|
- message(STATUS "Adding ${examples_length} examples")
|
|
+ #foreach(example ${examples})
|
|
+ # message(STATUS "Adding example: ${example}")
|
|
+ #endforeach(example ${examples})
|
|
+ #else(DART_VERBOSE)
|
|
+ #list(LENGTH examples examples_length)
|
|
+ #message(STATUS "Adding ${examples_length} examples")
|
|
endif(DART_VERBOSE)
|
|
|
|
# Add a "tutorials" target to build tutorials.
|