This website requires JavaScript.
Explore
Help
Sign In
v4games
/
assimp
Watch
3
Star
0
Fork
You've already forked assimp
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
40b611b478
assimp
/
assimp-config.cmake.in
2 lines
55 B
CMake
Raw
Normal View
History
Unescape
Escape
Improved cmake configs for Windows and Linux. Now the configs follows the standard cmake-package code: see https://cmake.org/cmake/help/v3.12/manual/cmake-packages.7.html Downstreamer no longer have to manually specify target_include_directories with ${ASSIMP_INCLUDE_DIRS}, target_link_libraries with ${ASSIMP_LIBRARY_DIRS} and so on. Downstreamer can now use: find_package(assimp CONFIG REQUIRED) target_link_libraries(AWESOME_APP PUBLIC assimp::assimp) and everything should work. Added assimpTargets.cmake.in Added assimpTargets-debug.cmake.in Added assimpTargets-release.cmake.in Modified CMakeLists.txt Modified code/CMakeLists.txt - added ALIAS assimp::assimp Tested on Ubuntu 18.04 and Windows 10
2018-09-30 15:18:18 +00:00
include
(
${
CMAKE_CURRENT_LIST_DIR
}
/assimpTargets.cmake
)