mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-04 14:14:09 +00:00
Add support for CMake
This commit is contained in:
parent
403e83eaf0
commit
e3cb3bae99
35 changed files with 583 additions and 1 deletions
1
libs/string/CMakeLists.txt
Normal file
1
libs/string/CMakeLists.txt
Normal file
|
@ -0,0 +1 @@
|
|||
subdirs( test example )
|
6
libs/string/example/CMakeLists.txt
Normal file
6
libs/string/example/CMakeLists.txt
Normal file
|
@ -0,0 +1,6 @@
|
|||
add_executable( libs_string_example_c_str_to_sprout_string c_str_to_sprout_string.cpp )
|
||||
set_target_properties( libs_string_example_c_str_to_sprout_string PROPERTIES OUTPUT_NAME "c_str_to_sprout_string" )
|
||||
add_executable( libs_string_example_literals_to_string literals_to_string.cpp )
|
||||
set_target_properties( libs_string_example_literals_to_string PROPERTIES OUTPUT_NAME "literals_to_string" )
|
||||
add_executable( libs_string_example_simple simple.cpp )
|
||||
set_target_properties( libs_string_example_simple PROPERTIES OUTPUT_NAME "simple" )
|
3
libs/string/test/CMakeLists.txt
Normal file
3
libs/string/test/CMakeLists.txt
Normal file
|
@ -0,0 +1,3 @@
|
|||
add_executable( libs_string_test_string string.cpp )
|
||||
set_target_properties( libs_string_test_string PROPERTIES OUTPUT_NAME "string" )
|
||||
add_test( libs_string_test_string string )
|
Loading…
Add table
Add a link
Reference in a new issue