Changeset 37
- Timestamp:
- 10/02/07 16:55:51 (1 year ago)
- Files:
-
- tags/1.0RC1/CMakeLists.txt (modified) (1 diff)
- tags/1.0RC1/core/CMakeLists.txt (modified) (1 diff)
- tags/1.0RC1/core/sql/routing_core.sql (modified) (3 diffs)
- tags/1.0RC1/core/src/CMakeLists.txt (modified) (1 diff)
- tags/1.0RC1/extra/driving_distance/src/alpha.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
tags/1.0RC1/CMakeLists.txt
r36 r37 18 18 19 19 EXEC_PROGRAM(pg_config 20 ARGS -- libdir20 ARGS --pkglibdir 21 21 OUTPUT_VARIABLE LIB_DIR) 22 22 tags/1.0RC1/core/CMakeLists.txt
r30 r37 1 # Recurse into the "Hello" and "Demo" subdirectories. This does not actually2 # cause another cmake executable to run. The same process will walk through3 # the project's entire directory structure.4 1 SUBDIRS(src) tags/1.0RC1/core/sql/routing_core.sql
r30 r37 29 29 target_id integer, directed boolean, has_reverse_cost boolean) 30 30 RETURNS SETOF path_result 31 AS '$libdir/ routing'31 AS '$libdir/librouting' 32 32 LANGUAGE 'C' IMMUTABLE STRICT; 33 33 … … 40 40 target_id integer,directed boolean, has_reverse_cost boolean) 41 41 RETURNS SETOF path_result 42 AS '$libdir/ routing'42 AS '$libdir/librouting' 43 43 LANGUAGE 'C' IMMUTABLE STRICT; 44 44 … … 50 50 target_id integer,directed boolean, has_reverse_cost boolean) 51 51 RETURNS SETOF path_result 52 AS '$libdir/ routing'52 AS '$libdir/librouting' 53 53 LANGUAGE 'C' IMMUTABLE STRICT; 54 54 tags/1.0RC1/core/src/CMakeLists.txt
r30 r37 1 #Then for each subdirectory listed in the SUBDIRS command, 2 # CMakeLists.txt files are created. In the ./Hello directory, the 3 # following CMakeLists.txt file is created: 4 5 # Create a library called "Hello" which includes the source file "hello.cxx". 6 # Any number of sources could be listed here. 7 ADD_LIBRARY(routing SHARED boost_wrapper.cpp astar_boost_wrapper.cpp shooting_star_boost_wrapper.cpp) 1 ADD_LIBRARY(routing SHARED dijkstra.c astar.c shooting_star.c boost_wrapper.cpp astar_boost_wrapper.cpp shooting_star_boost_wrapper.cpp) 8 2 9 3 tags/1.0RC1/extra/driving_distance/src/alpha.c
r30 r37 39 39 */ 40 40 #define MAX_NODES 1000000 41 42 #ifdef PG_MODULE_MAGIC 43 PG_MODULE_MAGIC; 44 #endif 41 45 42 46 struct timeval prof_alpha, prof_store, prof_extract, prof_total;

