spielwiese
Last change
on this file since 599326 was
599326,
checked in by Kai Krüger <krueger@…>, 13 years ago
|
Anne, Kai, Frank:
- changes to #include "..." statements to allow cleaner build structure
- affected directories: omalloc, kernel, Singular
- not yet done: IntergerProgramming
git-svn-id: file:///usr/local/Singular/svn/trunk@13032 2c84dea3-7e68-4137-9b89-c4e89433aadc
|
-
Property mode set to
100644
|
File size:
932 bytes
|
Line | |
---|
1 | # -*- mode: cmake; -*- |
---|
2 | # |
---|
3 | |
---|
4 | include_directories(${CMAKE_CURRENT_SOURCE_DIR}) |
---|
5 | include_directories(${${PROJECT_NAME}_SOURCE_DIR}) |
---|
6 | include_directories(${${PROJECT_NAME}_SOURCE_DIR}/kernel) |
---|
7 | include_directories(${${PROJECT_NAME}_SOURCE_DIR}/factory) |
---|
8 | |
---|
9 | # include directories should be solved |
---|
10 | #include_directories(${${PROJECT_NAME}_SOURCE_DIR}/Singular) |
---|
11 | include_directories(${${PROJECT_NAME}_SOURCE_DIR}/omalloc) |
---|
12 | include_directories(${${PROJECT_NAME}_SOURCE_DIR}/x86_64-Linux/include ) |
---|
13 | |
---|
14 | |
---|
15 | add_subdirectory(Singular) |
---|
16 | add_subdirectory(kernel) |
---|
17 | |
---|
18 | set(test_srcs main.cpp |
---|
19 | Singleton.cpp |
---|
20 | ) |
---|
21 | |
---|
22 | add_executable(Singular_test_suite ${test_srcs}) |
---|
23 | target_link_libraries(Singular_test_suite Singular-test) |
---|
24 | target_link_libraries(Singular_test_suite ${${PROJECT_NAME}_SOURCE_DIR}/omalloc/libomalloc.a) |
---|
25 | |
---|
26 | #target_link_libraries(Singular_test_suite Singular-test) |
---|
27 | |
---|
28 | # adding the tests |
---|
29 | add_test(Singular_test_suite ${CMAKE_CURRENT_BINARY_DIR}/Singular_test_suite) |
---|
30 | |
---|
Note: See
TracBrowser
for help on using the repository browser.