diff options
| author | Tony Barbour <tony@LunarG.com> | 2015-12-16 14:57:33 -0700 |
|---|---|---|
| committer | Tony Barbour <tony@LunarG.com> | 2015-12-16 15:07:14 -0700 |
| commit | ae672b16966e2af8033f14fc28d1bb8ad11cf15d (patch) | |
| tree | 1cb6ff4476d3e68a038896a4e461545dd9aed733 | |
| parent | 9392e305ab0ab971f064e629f62cd0c4fa782870 (diff) | |
| download | usermoji-ae672b16966e2af8033f14fc28d1bb8ad11cf15d.tar.xz | |
Remove FindPkgConfig from Windows build to stop error messages
| -rwxr-xr-x | CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 0e4f7bfd..424ce5bd 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -47,7 +47,9 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake") # Header file for CMake settings include_directories("${PROJECT_SOURCE_DIR}/include") -include(FindPkgConfig) +if(NOT WIN32) + include(FindPkgConfig) +endif() set (CMAKE_INSTALL_PREFIX "") |
