FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
rkdeveloptool/CMakeLists.txt at master · kuno/rkdeveloptool · GitHub
kuno
/
rkdeveloptool
Public
forked from
rockchip-linux/rkdeveloptool
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
rkdeveloptool
/
CMakeLists.txt
Copy path
More file actions
More file actions
Latest commit
History
History
History
56 lines (42 loc) · 1.36 KB
Breadcrumbs
rkdeveloptool
/
CMakeLists.txt
Copy path
File metadata and controls
56 lines (42 loc) · 1.36 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
44
45
46
47
48
49
50
51
52
53
54
55
#
Project name
set
(
PROJECT_NAME
"rkDevelopTool_Mac"
)
#
The version number.
set
(RKDevelopTool_Mac_PACKAGE_VERSION
"1.3"
)
file
(
GLOB
LOCAL_CPP_FILES
*.cpp
)
set
(SOURCE_FILES
${SOURCE_FILES}
${LOCAL_CPP_FILES}
)
file
(
GLOB
LOCAL_H_FILES
*.h
)
set
(HEADER_FILES
${HEADER_FILES}
${LOCAL_H_FILES}
)
#
Set your libusb path
set
(libusb_INCLUDE_DIR
"/usr/local/Cellar/libusb/1.0.22/include/libusb-1.0/"
)
set
(libusb_STATIC
"/usr/local/Cellar/libusb/1.0.22/lib/"
)
#
Set your libiconv path
set
(libiconv_INCLUDE_DIR
"/usr/local/opt/libiconv/include/"
)
set
(libiconv_STATIC
"/usr/local/opt/libiconv/lib/"
)
cmake_minimum_required
(
VERSION
2.6
)
project
(
${
PROJECT_NAME
}
)
#
Turn off build log
#
set (CMAKE_VERBOSE_MAKEFILE ON)
#
Configure a header file to pass some of the CMake settings
#
to the source code
configure_file
(
"
${
PROJECT_SOURCE_DIR
}
/config.h.in"
"
${
PROJECT_BINARY_DIR
}
/config.h"
)
#
add the binary tree to the search path for include files
#
so that we will find config.h
include_directories
(
"
${
PROJECT_BINARY_DIR
}
"
"
${
PROJECT_SOURCE_DIR
}
"
"
${libusb_INCLUDE_DIR}
"
"
${libiconv_INCLUDE_DIR}
"
)
link_directories
(
${libusb_STATIC}
${libiconv_STATIC}
)
add_executable
(
${
PROJECT_NAME
}
${SOURCE_FILES}
)
target_link_libraries
(
"
${
PROJECT_NAME
}
"
"
${libusb_STATIC}
/libusb-1.0.dylib"
"
${libiconv_STATIC}
/libiconv.dylib"
)
Back
|
FazBrowse Home
|
New Git URL