Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Whitespace fix |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
fa93a19a0a14534fd4838b64608b7794 |
User & Date: | tangent 2016-02-06 10:22:46 |
Context
2017-06-29
| ||
02:59 | Updated our HACKERS.md file to be consistent with the newly-Fossilized MySQL++ HACKERS.md file. check-in: 60f47c604d user: tangent tags: trunk | |
2016-02-06
| ||
10:22 | Whitespace fix check-in: fa93a19a0a user: tangent tags: trunk | |
10:02 | Added a missing library check-in: 9e56dd977c user: tangent tags: trunk | |
Changes
Changes to examples/CMakeLists.txt.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
..
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# CMakeLists.txt - Tells CMake how to build the libtabula examples on # supported platforms. See ../CMakeLists.txt for system-wide # matters. # # Created 2014.08.21 by Warren Young # # Copyright © 2014-2015 by Warren Young # Copyright © 2015 by Educational Technology Resources, Inc. # Copyright © 2015 by Educational Technology Resources, Inc. # # Others may also hold copyrights on code in this file. See the # CREDITS.md file in the top directory of the distribution for details. # # This file is part of libtabula. ................................................................................ add_executable(${basename} ${basename}.cpp) target_link_libraries(${basename} ltexcomm tabula ${MYSQL_C_API_LIBRARY}) if (CMAKE_USE_PTHREADS_INIT) target_link_libraries(${basename} pthread) endif() endmacro(add_example_executable) foreach(basename resetdb cgi_jpeg load_jpeg simple1 simple2 simple3 ssqls1 ssqls2 ssqls3 ssqls4 ssqls5 ssqls6 tquery1 tquery2 tquery3 tquery4 cpool dbinfo deadlock fieldinf for_each multiquery store_if transaction ) add_example_executable(${basename}) endforeach(basename) |
|
>
|
<
|
|
|
|
|
|
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
..
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# CMakeLists.txt - Tells CMake how to build the libtabula examples on # supported platforms. See ../CMakeLists.txt for system-wide # matters. # # Created 2014.08.21 by Warren Young # # Copyright © 2014-2016 by Warren Young # Copyright © 2015 by Educational Technology Resources, Inc. # Copyright © 2015 by Educational Technology Resources, Inc. # # Others may also hold copyrights on code in this file. See the # CREDITS.md file in the top directory of the distribution for details. # # This file is part of libtabula. ................................................................................ add_executable(${basename} ${basename}.cpp) target_link_libraries(${basename} ltexcomm tabula ${MYSQL_C_API_LIBRARY}) if (CMAKE_USE_PTHREADS_INIT) target_link_libraries(${basename} pthread) endif() endmacro(add_example_executable) foreach( basename resetdb cgi_jpeg load_jpeg simple1 simple2 simple3 ssqls1 ssqls2 ssqls3 ssqls4 ssqls5 ssqls6 tquery1 tquery2 tquery3 tquery4 cpool dbinfo deadlock fieldinf for_each multiquery store_if transaction ) add_example_executable(${basename}) endforeach(basename) |