Add a second process to be loaded by the bootloader.
This commit is contained in:
parent
b9b45c5e45
commit
5bcf1f4e4a
5 changed files with 23 additions and 1 deletions
|
|
@ -15,3 +15,15 @@ set_target_properties(test
|
|||
COMPILE_FLAGS "${CMAKE_CXX_FLAGS} ${_COMPILE_FLAGS}"
|
||||
LINK_FLAGS "${CMAKE_EXE_LINK_FLAGS} ${_LINK_FLAGS}"
|
||||
)
|
||||
|
||||
add_executable(test2
|
||||
test2.cpp)
|
||||
|
||||
target_link_libraries(test2
|
||||
zion_lib)
|
||||
|
||||
set_target_properties(test2
|
||||
PROPERTIES
|
||||
COMPILE_FLAGS "${CMAKE_CXX_FLAGS} ${_COMPILE_FLAGS}"
|
||||
LINK_FLAGS "${CMAKE_EXE_LINK_FLAGS} ${_LINK_FLAGS}"
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue