-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser-config.cmake
43 lines (36 loc) · 2.29 KB
/
user-config.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#########################################################
# You have to give some path to the project to make it #
# compile. #
# #
# Here is some predefined path depending on your system #
# and your compiler. Uncomment what you will use and #
# check they are pointing the right path. #
#########################################################
#-------------------------------------------------------#
# Sielo Path #
#-------------------------------------------------------#
set(SIELO_DIR C:/Users/victo/Documents/Cpp/CLion/sielo-browser) # <Set Path to Sielo>
set(SIELO_LIBS_DIR C:/Users/victo/Documents/Cpp/CLion/sielo-browser/vs2017/lib/Release/) # <Set Path where Sielo libs are built>
#-------------------------------------------------------#
# Windows #
#-------------------------------------------------------#
### 64bit (x64) ###
set (CMAKE_PREFIX_PATH "C:\\Qt\\5.11.2\\msvc2017_64\\") # <Set Path to Qt>
# set (OPENSSL_DIR "path to openssl") # <OTIONAL : Set the past to custom OpenSSL version>
### 32bit (x86) ###
# set (CMAKE_PREFIX_PATH "C:\\Qt\\5.10.2\\msvc2015\\") # <Set Path to Qt>
# set (OPENSSL_DIR "path to openssl") # <OTIONAL : Set the past to custom OpenSSL version>
#-------------------------------------------------------#
# macOS #
#-------------------------------------------------------#
# set (CMAKE_PREFIX_PATH "/Users/you/Qt/5.11.2/clang_64/") # <Set Path to Qt>
# set (OPENSSL_DIR "path to openssl") # <OTIONAL : Set the past to custom OpenSSL version>
#-------------------------------------------------------#
# Linux #
#-------------------------------------------------------#
# set (CMAKE_PREFIX_PATH "path/to/qt") # <Set Path to Qt>
# set (OPENSSL_DIR "path to openssl") # <OTIONAL : Set the past to custom OpenSSL version>
#-------------------------------------------------------#
# Compiler Option #
#-------------------------------------------------------#
# set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra") # <Enable some flags for GNU compiler>