summaryrefslogtreecommitdiffstats
path: root/Modules/IntelVSImplicitPath/extract.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/IntelVSImplicitPath/extract.cmake')
-rw-r--r--Modules/IntelVSImplicitPath/extract.cmake12
1 files changed, 12 insertions, 0 deletions
diff --git a/Modules/IntelVSImplicitPath/extract.cmake b/Modules/IntelVSImplicitPath/extract.cmake
new file mode 100644
index 0000000..055247c
--- /dev/null
+++ b/Modules/IntelVSImplicitPath/extract.cmake
@@ -0,0 +1,12 @@
+file(STRINGS env.txt LIB REGEX "^LIB=.*$")
+string(REPLACE "LIB=" "" LIB "${LIB}" )
+# change LIB from a string to a ; separated list of paths
+set(LIB ${LIB})
+# look at each path and try to find ifconsol.lib
+foreach( dir ${LIB})
+ file(TO_CMAKE_PATH "${dir}" dir)
+ if(EXISTS "${dir}/ifconsol.lib")
+ file(WRITE implict_link.txt ${dir})
+ return()
+ endif()
+endforeach()