Add travis configuration.

This commit is contained in:
ArthurSonzogni
2020-03-22 21:01:44 +01:00
parent 1e35687d64
commit 4ff45ee540
5 changed files with 37 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
function(example name)
add_executable(${name} ${name}.cpp)
target_link_libraries(${name} PUBLIC component)
set_property(TARGET ${name} PROPERTY CXX_STANDARD 17)
endfunction(example)
example(checkbox)

View File

@@ -1,6 +1,7 @@
function(example name)
add_executable(${name} ${name}.cpp)
target_link_libraries(${name} PUBLIC dom)
set_property(TARGET ${name} PROPERTY CXX_STANDARD 17)
endfunction(example)
example(dbox)

View File

@@ -1,6 +1,7 @@
function(example name)
add_executable(${name} ${name}.cpp)
target_link_libraries(${name} PUBLIC component)
set_property(TARGET ${name} PROPERTY CXX_STANDARD 17)
endfunction(example)
example(print_key_press)