~nomacs/nomacs/daily

« back to all changes in this revision

Viewing changes to CMakeUserPathsGit.cmake

  • Committer: Stefan Fiel
  • Date: 2018-08-20 02:35:12 UTC
  • Revision ID: stefan@nomacs.org-20180820023512-v6lgh1zknnr7ruo8
automated commit - for real history see github git

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# If you want to use prefix paths with cmake, copy and rename this file to CMakeUser.cmake
 
2
# Do not add this file to GIT!
 
3
 
 
4
# set your preferred OpenCV Library path
 
5
IF (CMAKE_CL_64)
 
6
        message(STATUS "using x64 architecture...")
 
7
        SET(CMAKE_PREFIX_PATH ${CMAKE_PREFIX_PATH} "C:/Qt/Qt5.11.1-x64/bin")
 
8
        SET(CMAKE_PREFIX_PATH ${CMAKE_PREFIX_PATH} "C:/coding/3rd-party/opencv/build2017-x64/")
 
9
        SET(CMAKE_PREFIX_PATH ${CMAKE_PREFIX_PATH} "C:/coding/3rd-party/LibRaw/build2017-x64/")
 
10
ELSE()
 
11
        message(STATUS "using x86 architecture...")
 
12
        SET(CMAKE_PREFIX_PATH ${CMAKE_PREFIX_PATH} "C:/Qt/Qt5.11.1-x86/bin")
 
13
        SET(CMAKE_PREFIX_PATH ${CMAKE_PREFIX_PATH} "C:/coding/3rd-party/opencv/build2017-x86/")
 
14
        SET(CMAKE_PREFIX_PATH ${CMAKE_PREFIX_PATH} "C:/coding/3rd-party/LibRaw/build2017-x86/") 
 
15
ENDIF()