-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/function_separation' into develop
* feature/function_separation: (21 commits) validation data length option update classify almost done train almost done overfit detection debug test change darts version use data for dfs comparsion memory boost bug fix validation test a train without validation done a morning commit datasource != train daliy daliy stash stash daily ...
- Loading branch information
Showing
27 changed files
with
1,911 additions
and
599 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,18 @@ | ||
add_executable(gspls gspls.cpp) | ||
add_executable(gspan gspan.cpp) | ||
add_executable(gspls_static gspls.cpp) | ||
add_executable(gspan_static gspan.cpp) | ||
add_executable(gspan_pls_static gspan_pls.cpp) | ||
|
||
target_link_libraries(gspls glp) | ||
target_link_libraries(gspan glp) | ||
target_link_libraries(gspls_static glp_static) | ||
target_link_libraries(gspan_static glp_static) | ||
target_link_libraries(gspan_pls_static glp_static) | ||
|
||
IF(${CMAKE_SYSTEM_NAME} MATCHES "Linux") | ||
set_target_properties(gspls_static PROPERTIES LINK_FLAGS "-static") | ||
set_target_properties(gspan_static PROPERTIES LINK_FLAGS "-static") | ||
set_target_properties(gspan_pls_static PROPERTIES LINK_FLAGS "-static") | ||
ENDIF() | ||
|
||
install_targets(/bin gspls) | ||
install_targets(/bin gspan) | ||
install_targets(/bin gspls_static) | ||
install_targets(/bin gspan_static) | ||
install_targets(/bin gspan_pls_static) | ||
|
||
add_subdirectory(gspls) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.