Jed,<br><br>There was some conversion necessary on the paths, since the windows compilers expect msdos style paths.  Since PETSc already requires cygwin, I figured it was a safe assumption that "cygpath" was available. Also, Windows compilers need the whole library name (e.g. "libfoo" instead of "foo" on linux).  Finally, there is some nonsense required if PETSc was built with the static runtime library.<br>

<br>The commit is here:  <a href="https://github.com/johnfettig/cmake-modules/commit/53ed281a37bfc1bfebdf5d6c0133de3e7901cba7">https://github.com/johnfettig/cmake-modules/commit/53ed281a37bfc1bfebdf5d6c0133de3e7901cba7</a><br>

<br>Let me know if you have any trouble with it.  It works well with the NMake generator.  I was unable to test the Visual Studio generator because I built PETSc with icl and CMake's Visual Studio generator doesn't like that.<br>

<br>For anybody else interested in using this, here is my CMakeLists.txt for building one of the PETSc examples:<br><br>######<br>cmake_minimum_required (VERSION 2.6)<br>project (example)<br><br>set(PETSC_DIR $ENV{PETSC_DIR})<br>

set(PETSC_ARCH $ENV{PETSC_ARCH})<br><br>set(CMAKE_MODULE_PATH C:/path/to/cmake-modules)<br>include(FindPETSc)<br><br>include_directories(${PETSC_INCLUDES})<br>add_executable(ex2 ex2.c)<br>target_link_libraries(ex2 ${PETSC_LIBRARIES})<br>

######<br><br>Regards,<br>John<br><br><br><div class="gmail_quote">On Fri, Mar 8, 2013 at 4:53 PM, John Fettig <span dir="ltr"><<a href="mailto:john.fettig@gmail.com" target="_blank">john.fettig@gmail.com</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Ah, ok.  I'll have a crack at it.<br>
<br>
Thanks,<br>
John<br>
<div class="HOEnZb"><div class="h5"><br>
On Fri, Mar 8, 2013 at 4:40 PM, Jed Brown <<a href="mailto:jedbrown@mcs.anl.gov">jedbrown@mcs.anl.gov</a>> wrote:<br>
> I have not tested it on Windows so I would not be surprised if it does not<br>
> work. It should not be difficult to make work and I would happily accept<br>
> patches.<br>
><br>
> On Mar 8, 2013 2:55 PM, "John Fettig" <<a href="mailto:john.fettig@gmail.com">john.fettig@gmail.com</a>> wrote:<br>
>><br>
>> Looking through the mailing list archives, I found a pointer to Jed's<br>
>> CMake module FindPETSc.cmake.  Has this been tested on windows?<br>
>> Should this work when PETSc has been installed via make install?  The<br>
>> directions given at the end of that say<br>
>><br>
>> ====================================<br>
>> Install complete. It is useable with<br>
>> PETSC_DIR=/path/to/my/petsc/install [and no more PETSC_ARCH].<br>
>> Now to check if the libraries are working do (in current directory):<br>
>> make PETSC_DIR=/path/to/my/petsc/install test<br>
>> ====================================<br>
>><br>
>> However, when I only set PETSC_DIR, CMake bails with<br>
>><br>
>> CMake Error at FindPETSc.cmake:118 (message):<br>
>>   The pair<br>
>>   PETSC_DIR=/path/to/my/petsc/install<br>
>>   PETSC_ARCH= do not specify a valid PETSc installation<br>
>> Call Stack (most recent call first):<br>
>>   CMakeLists.txt:9 (include)<br>
>><br>
>><br>
>> -- PETSc could not be found.  Be sure to set PETSC_DIR and PETSC_ARCH.<br>
>> (missing:  PETSC_INCLUDES PETSC_LIBRARIES PETSC_EXECUTABLE_RUNS)<br>
>><br>
>><br>
>> Thanks for any help,<br>
>> John<br>
</div></div></blockquote></div><br>