mirror of
https://git.freebsd.org/ports.git
synced 2025-06-05 12:56:28 -04:00
Features: - VSPAERO v3.0 - Panel method, batch runs, control surfaces, much more - Improved VSPAERO integration - One-Axis Kinematic Joint (Hinge/Slider) - Group Transformation/Scale -- Thanks Alex Gary - 2D AutoCad Export of feature lines Bug Fixes: - Change to Geom type name lookup instead of type ID number - Fix Python API - Fix VarPresets API to built-in scripting PR: 212131 Submitted by: maintainer
16 lines
664 B
CMake
16 lines
664 B
CMake
--- Libraries/cmake/External_CMinpack.cmake.orig 2016-08-21 15:22:39 UTC
|
|
+++ Libraries/cmake/External_CMinpack.cmake
|
|
@@ -1,3 +1,6 @@
|
|
+SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -lm -fPIC")
|
|
+SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -lm -fPIC")
|
|
+
|
|
ExternalProject_Add( CMINPACK
|
|
URL ${CMAKE_CURRENT_SOURCE_DIR}/cminpack-1.3.3.tar.gz
|
|
CMAKE_ARGS -DCMAKE_INSTALL_PREFIX:PATH=<INSTALL_DIR>
|
|
@@ -8,4 +11,4 @@ ExternalProject_Add( CMINPACK
|
|
-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}
|
|
)
|
|
ExternalProject_Get_Property( CMINPACK BINARY_DIR INSTALL_DIR )
|
|
-SET( CMINPACK_INSTALL_DIR ${INSTALL_DIR} )
|
|
\ No newline at end of file
|
|
+SET( CMINPACK_INSTALL_DIR ${INSTALL_DIR} )
|