Skip to content

Commit

Permalink
fix commit failure
Browse files Browse the repository at this point in the history
  • Loading branch information
Oneplus committed Aug 27, 2013
1 parent 3ce3920 commit 47632bb
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions src/_srl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ set_target_properties (srl_shared_lib PROPERTIES
VERSION ${srl_VERSION}
OUTPUT_NAME srl)

target_link_libraries (srl_static_lib util_static_lib maxent)
target_link_libraries (srl_shared_lib util_shared_lib maxent)
target_link_libraries (srl_static_lib util_static_lib maxent_static_lib)
target_link_libraries (srl_shared_lib util_shared_lib maxent_shared_lib)

configure_file (
SRL_DLL.h
Expand Down
16 changes: 8 additions & 8 deletions src/server/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ link_directories ( ${LIBRARY_OUTPUT_PATH} )
add_executable (ltp_server ${ltp_server_SRC})

target_link_libraries (ltp_server
maxent
util
maxent_static_lib
util_static_lib
ltp
splitsnt
segmentor
postagger
parser
ner
srl
segmentor_static_lib
postagger_static_lib
parser_static_lib
ner_static_lib
srl_static_lib
xml4nlp
dl
pthread
boost_regex)
boost_regex_static_lib)

16 changes: 8 additions & 8 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@ add_executable (ltp_test ${ltp_test_SRC})
#add_executable (ltp_test2 ${ltp_test2_SRC})

set (ltp_test_LIBS
maxent
util
maxent_static_lib
util_static_lib
ltp
splitsnt
segmentor
postagger
parser
ner
srl
segmentor_static_lib
postagger_static_lib
parser_static_lib
ner_static_lib
srl_static_lib
xml4nlp
boost_regex)
boost_regex_static_lib)

if (NOT WIN32)
set (ltp_test_LIBS ${ltp_test_LIBS} pthread)
Expand Down

0 comments on commit 47632bb

Please sign in to comment.