Sexpr: needs to be a STATIC lib
Fedora COPR builds with -DBUILD_SHARED_LIBS:BOOL=ON, which means this breaks until the sexpr lib target is explicitly STATIC
This commit is contained in:
parent
15bba27406
commit
f7d35cf94b
|
@ -28,7 +28,9 @@ set( SEXPR_LIB_FILES
|
||||||
sexpr_parser.cpp
|
sexpr_parser.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
add_library( sexpr ${SEXPR_LIB_FILES} )
|
add_library( sexpr STATIC
|
||||||
|
${SEXPR_LIB_FILES}
|
||||||
|
)
|
||||||
|
|
||||||
target_include_directories( sexpr PUBLIC
|
target_include_directories( sexpr PUBLIC
|
||||||
include
|
include
|
||||||
|
|
Loading…
Reference in New Issue