File tree Expand file tree Collapse file tree 3 files changed +2
-11
lines changed Expand file tree Collapse file tree 3 files changed +2
-11
lines changed Original file line number Diff line number Diff line change 26
26
runs-on : macos-latest
27
27
steps :
28
28
- name : Install dependencies
29
- run : brew install pkg-config autoconf automake libtool tesseract leptonica gpac
29
+ run : brew install pkg-config autoconf automake libtool tesseract leptonica gpac nanomsg
30
30
- uses : actions/checkout@v4
31
31
- name : build
32
32
run : ./build.command
47
47
steps :
48
48
- uses : actions/checkout@v4
49
49
- name : Install dependencies
50
- run : brew install pkg-config autoconf automake libtool gpac
50
+ run : brew install pkg-config autoconf automake libtool gpac nanomsg
51
51
- name : run autogen
52
52
run : ./autogen.sh
53
53
working-directory : ./mac
Original file line number Diff line number Diff line change @@ -152,7 +152,6 @@ add_subdirectory (lib_ccx)
152
152
aux_source_directory (${PROJECT_SOURCE_DIR} SOURCEFILE )
153
153
set (EXTRA_LIBS ${EXTRA_LIBS} ccx )
154
154
set (EXTRA_LIBS ${EXTRA_LIBS} ${GPAC_LIBRARIES} )
155
- set (EXTRA_LIBS ${EXTRA_LIBS} ${NANOMSG_LIBRARIES} )
156
155
# set (EXTRA_LIBS ${EXTRA_LIBS} m)
157
156
158
157
if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin" )
@@ -263,10 +262,7 @@ else ()
263
262
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DDISABLE_RUST" )
264
263
endif (PKG_CONFIG_FOUND AND NOT WITHOUT_RUST )
265
264
266
- pkg_check_modules (NANOMSG REQUIRED nanomsg )
267
265
268
- set (EXTRA_INCLUDES ${EXTRA_INCLUDES} ${NANOMSG_INCLUDE_DIR} )
269
- set (EXTRA_LIBS ${EXTRA_LIBS} ${NANOMSG_LIBRARIES} )
270
266
271
267
target_link_libraries (ccextractor ${EXTRA_LIBS} )
272
268
target_include_directories (ccextractor PUBLIC ${EXTRA_INCLUDES} )
Original file line number Diff line number Diff line change @@ -15,12 +15,7 @@ pkg_check_modules (GPAC REQUIRED gpac)
15
15
16
16
set (EXTRA_INCLUDES ${EXTRA_INCLUDES} ${GPAC_INCLUDE_DIRS} )
17
17
set (EXTRA_LIBS ${EXTRA_LIBS} ${GPAC_LIBRARIES} )
18
- ##new
19
- pkg_check_modules (NANOMSG REQUIRED nanomsg )
20
18
21
- set (EXTRA_INCLUDES ${EXTRA_INCLUDES} ${NANOMSG_INCLUDE_DIRS} )
22
- set (EXTRA_LIBS ${EXTRA_LIBS} ${NANOMSG_LIBRARIES} )
23
- ##new
24
19
25
20
if (WITH_FFMPEG )
26
21
find_package (PkgConfig )
You can’t perform that action at this time.
0 commit comments