Seems the cmake version is for linux and not tested on Windows with VS.
I'm not quite familiar with writing good cmake, so I list several errors below when building the proj on Windows with vs2013 (generated by cmake):
_ITERATOR_DEBUG_LEVEL //LNK2038
FIX: comment this line: "set(CUDA_PROPAGATE_HOST_FLAGS off)"
error D8021: 无效的数值参数“/Wextra” E:\Github\PWP3D_build.vc12\Application\cl
FIX: remove the FLAG: -Wextra
pwp3d.lib is not generated after build, only .dll created. I have to change the output type from dll to lib in the project property page, but how can I fix it in CMakeLists.txt?
I see the "if(MSVC)" part in cmakelists.txt, and also see a "pwp3d_export.h" file, but now sure how it works ;(
Seems the cmake version is for linux and not tested on Windows with VS. I'm not quite familiar with writing good cmake, so I list several errors below when building the proj on Windows with vs2013 (generated by cmake):