File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -24,13 +24,7 @@ include = [
24
24
" !/libquickfix/**/Makefile.am" ,
25
25
" !/libquickfix/**/*.sh" ,
26
26
# Exclude SSL related code (we will inject dummy files to replace them in build.rs)
27
- " !/libquickfix/src/C++/SSLSocketAcceptor.*" ,
28
- " !/libquickfix/src/C++/SSLSocketConnection.*" ,
29
- " !/libquickfix/src/C++/SSLSocketInitiator.*" ,
30
- " !/libquickfix/src/C++/ThreadedSSLSocketAcceptor.*" ,
31
- " !/libquickfix/src/C++/ThreadedSSLSocketConnection.*" ,
32
- " !/libquickfix/src/C++/ThreadedSSLSocketInitiator.*" ,
33
- " !/libquickfix/src/C++/UtilitySSL.*" ,
27
+ " !/libquickfix/src/C++/*SSL*.*" ,
34
28
# Exclude Threaded socket application related code (we will inject dummy files to replace them in build.rs)
35
29
" !/libquickfix/src/C++/ThreadedSocket*.*" ,
36
30
# Do not include auto generated message files.
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ fn main() {
44
44
45
45
// Inject stubs files
46
46
let libquickfix_cpp_dir: std:: path:: PathBuf = libquickfix_build_dir. join ( "src/C++" ) ;
47
+ // Below line can be removed when this MR is merged https://github.com/quickfix/quickfix/pull/655
47
48
touch_file ( libquickfix_cpp_dir. join ( "SSLSocketAcceptor.h" ) ) ;
48
49
touch_file ( libquickfix_cpp_dir. join ( "SSLSocketConnection.h" ) ) ;
49
50
touch_file ( libquickfix_cpp_dir. join ( "SSLSocketInitiator.h" ) ) ;
You can’t perform that action at this time.
0 commit comments