annotate cmake/MolkoDefineTest.cmake @ 221:d51d9c0c2186

misc: some cleanup
author David Demelier <markand@malikania.fr>
date Wed, 18 Nov 2020 15:19:25 +0100
parents 2cbea8172926
children 4c24604efcab
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
119
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
1 #
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
2 # MolkoDefineTest.cmake -- CMake build system for molko
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
3 #
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
4 # Copyright (c) 2020 David Demelier <markand@malikania.fr>
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
5 #
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
6 # Permission to use, copy, modify, and/or distribute this software for any
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
7 # purpose with or without fee is hereby granted, provided that the above
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
8 # copyright notice and this permission notice appear in all copies.
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
9 #
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
10 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
11 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
12 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
13 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
14 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
15 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
16 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
17 #
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
18
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
19 include(${CMAKE_CURRENT_LIST_DIR}/MolkoBuildAssets.cmake)
221
d51d9c0c2186 misc: some cleanup
David Demelier <markand@malikania.fr>
parents: 123
diff changeset
20 include(${CMAKE_CURRENT_LIST_DIR}/MolkoSetCompilerFlags.cmake)
119
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
21
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
22 function(molko_define_test)
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
23 set(options)
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
24 set(oneValueArgs TARGET)
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
25 set(multiValueArgs ASSETS FLAGS INCLUDES LIBRARIES SOURCES)
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
26
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
27 cmake_parse_arguments(TEST "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
28
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
29 if (NOT TEST_TARGET)
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
30 message(FATAL_ERROR "Missing TARGET argument")
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
31 endif ()
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
32 if (NOT TEST_SOURCES)
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
33 message(FATAL_ERROR "Missing SOURCES argument")
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
34 endif ()
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
35
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
36 molko_build_assets("${TEST_ASSETS}" OUTPUTS)
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
37
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
38 add_executable(test-${TEST_TARGET} ${TEST_SOURCES} ${OUTPUTS})
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
39 target_compile_definitions(test-${TEST_TARGET} PRIVATE ${TEST_FLAGS})
123
2cbea8172926 cmake: fix usage of assets for tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
40 target_include_directories(
2cbea8172926 cmake: fix usage of assets for tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
41 test-${TEST_TARGET}
2cbea8172926 cmake: fix usage of assets for tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
42 PRIVATE
2cbea8172926 cmake: fix usage of assets for tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
43 ${CMAKE_CURRENT_BINARY_DIR}
2cbea8172926 cmake: fix usage of assets for tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
44 ${TEST_INCLUDES}
2cbea8172926 cmake: fix usage of assets for tests
David Demelier <markand@malikania.fr>
parents: 121
diff changeset
45 )
119
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
46 target_link_libraries(
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
47 test-${TEST_TARGET}
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
48 PRIVATE
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
49 libcore
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
50 libadventure
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
51 libgreatest
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
52 ${TEST_LIBRARIES}
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
53 )
221
d51d9c0c2186 misc: some cleanup
David Demelier <markand@malikania.fr>
parents: 123
diff changeset
54
119
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
55 add_test(NAME ${TEST_TARGET} COMMAND test-${TEST_TARGET})
121
789b23e01f52 misc: reorganize hierarchy, closes #2490
David Demelier <markand@malikania.fr>
parents: 119
diff changeset
56 set_target_properties(test-${TEST_TARGET} PROPERTIES FOLDER tests)
221
d51d9c0c2186 misc: some cleanup
David Demelier <markand@malikania.fr>
parents: 123
diff changeset
57
d51d9c0c2186 misc: some cleanup
David Demelier <markand@malikania.fr>
parents: 123
diff changeset
58 molko_set_compiler_flags(test-${TEST_TARGET})
119
43e04bf2c350 cmake: add tests, continue #2487 @1h
David Demelier <markand@malikania.fr>
parents:
diff changeset
59 endfunction()