-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved build system on Windows side; now automatically determines a…
…nd copies (to a local libs folder) dependencies required by built targets.
- Loading branch information
1 parent
a398d99
commit c23c39c
Showing
12 changed files
with
78 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Numpy_INCLUDE_DIR:PATH=C:\Users\victlu.HERE\AppData\Local\Enthought\Canopy\App\appdata\canopy-1.5.1.2730.win-x86_64\Lib\site-packages\numpy\core\include\numpy | ||
PYTHON_INCLUDE_DIR:PATH=C:\Users\victlu.HERE\AppData\Local\Enthought\Canopy\App\appdata\canopy-1.5.1.2730.win-x86_64\include | ||
PYTHON_LIBRARY:FILEPATH=C:\Users\victlu.HERE\AppData\Local\Enthought\Canopy\App\appdata\canopy-1.5.1.2730.win-x86_64\libs\python27.lib | ||
Eigen_INCLUDE_DIR:PATH=F:/Sources/eigen-3.2.9 | ||
TBB_INCLUDE_DIR:PATH=F:/Sources/tbb43_20141204oss/include | ||
TBB_tbb_LIBRARY:FILEPATH=F:/Sources/tbb43_20141204oss/lib/intel64/vc12/tbb.lib | ||
TBB_tbb_RUNTIME:FILEPATH=F:/Sources/tbb43_20141204oss/bin/intel64/vc12/tbb.dll | ||
TBB_tbbmalloc_LIBRARY:FILEPATH=F:/Sources/tbb43_20141204oss/lib/intel64/vc12/tbbmalloc.lib | ||
TBB_tbbmalloc_RUNTIME:FILEPATH=F:/Sources/tbb43_20141204oss/bin/intel64/vc12/tbbmalloc.dll | ||
Qt5_DIR:PATH=C:/Qt/5.4/msvc2013_64_opengl/lib/cmake/Qt5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# usage: cmake -P CopyWindowsDependencies.cmake | ||
# <target file path> <copy folder path> <.dll folder paths> | ||
# assumes full existing paths | ||
# .dll folder paths are semicolon-separated | ||
|
||
include(GetPrerequisites) | ||
|
||
set(_target_file ${CMAKE_ARGV3}) | ||
set(_copy_folder ${CMAKE_ARGV4}) | ||
set(_dll_paths ${CMAKE_ARGV5}) | ||
get_prerequisites(${_target_file} _prereqs 1 1 "" "${_dll_paths}") | ||
foreach(p ${_prereqs}) | ||
if(NOT (p STREQUAL "python27.dll")) | ||
gp_resolve_item("" ${p} "" "${_dll_paths}" src) | ||
set(dst ${_copy_folder}) | ||
execute_process(COMMAND | ||
${CMAKE_COMMAND} -E copy_if_different ${src} ${dst}) | ||
endif() | ||
endforeach() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters