Skip to content

Commit

Permalink
Merge pull request #755 from thereisnoknife/master
Browse files Browse the repository at this point in the history
update src/shogun/CmakeLists.txt
  • Loading branch information
lisitsyn committed Aug 23, 2012
2 parents dea19d8 + 764509e commit 00d3056
Showing 1 changed file with 33 additions and 3 deletions.
36 changes: 33 additions & 3 deletions src/shogun/CMakeLists.txt
Expand Up @@ -13,19 +13,35 @@ aux_source_directory(distance DISTANCE)
aux_source_directory(distributions DISTRIBUTIONS)
aux_source_directory(evaluation EVALUATION)
aux_source_directory(features FEATURES)
aux_source_directory(features/streaming FEATURES_STREAMING)
aux_source_directory(io IO)
aux_source_directory(io/streaming IO_STREAMING)
aux_source_directory(kernel KERNEL)
aux_source_directory(kernel/normalizer KERNEL_NORMALIZER)
aux_source_directory(kernel/string KERNEL_STRING)
aux_source_directory(labels LABELS)
aux_source_directory(latent LATENT)
aux_source_directory(lib LIB)
aux_source_directory(lib/eternal LIB_EXTERNAL)
aux_source_directory(loss LOSS)
aux_source_directory(machine MACHINE)
aux_source_directory(mathematics MATHEMATICS)
aux_source_directory(modelselection MODELSELECTION)
aux_source_directory(multiclass MULTICLASS)
aux_source_directory(multiclass/ecoc MULTICLASS_ECOC)
aux_source_directory(multiclass/tree MULTICLASS_TREE)
aux_source_directory(optimization/lbfgs OPTIMIZATION_LBFGS)
aux_source_directory(optimization/liblinear OPTIMIZATION_LIBLINEAR)
aux_source_directory(preprocessor PREPROCESSOR)
aux_source_directory(regression REGRESSION)
aux_source_directory(regression/svr REGRESSION_SVR)
aux_source_directory(regression/gp REGRESSION_GP)
aux_source_directory(statistics STATISTICS)
aux_source_directory(structure STRUCTURE)
aux_source_directory(transfer TRANSFER)
aux_source_directory(transfer/multitask TRANSFER_MULTITASK)
aux_source_directory(transfer/domain_adaptation TRANSFER_DOMAIN_ADAPTATION)
aux_source_directory(ui UI)
aux_source_directory(statistics STATISTICS)

add_library(shogun SHARED
${BASE}
Expand All @@ -41,17 +57,31 @@ add_library(shogun SHARED
${DISTRIBUTIONS}
${EVALUATION}
${FEATURES}
${FEATURES_STREAMING}
${IO}
${IO_STREAMING}
${KERNEL}
${KERNEL_NORMALIZER}
${KERNEL_STRING}
${LABELS}
${LATENT}
${LIB}
${LIB_EXTERNAL}
${LOSS}
${MACHINE}
${MATHEMATICS}
${MODELSELECTION}
${MULTICLASS}
${MULTICLASS_ECOC}
${MULTICLASS_TREE}
${PREPROCESSOR}
${REGRESSION}
${REGRESSION_SVR}
${REGRESSION_GP}
${STATISTICS}
${STRUCTURE}
${UI}
${STATISTICS})
${TRANSFER}
${TRANSFER_DOMAIN_ADAPTATION}
${TRANSFER_MULTITASK}
${UI})

0 comments on commit 00d3056

Please sign in to comment.