Skip to content

Commit

Permalink
Add tiny-process-library
Browse files Browse the repository at this point in the history
  • Loading branch information
topisani committed Aug 7, 2018
1 parent 3e88da7 commit 4961d5f
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Expand Up @@ -19,3 +19,6 @@
[submodule "external/range-v3"]
path = external/range-v3
url = https://github.com/ericniebler/range-v3
[submodule "external/tiny-process-library"]
path = external/tiny-process-library
url = https://github.com/eidheim/tiny-process-library
1 change: 1 addition & 0 deletions boards/parts/rpi/config.cmake
@@ -0,0 +1 @@

2 changes: 2 additions & 0 deletions boards/parts/rpi/include/boards/rpi/wifi.hpp
@@ -0,0 +1,2 @@
#pragma once

5 changes: 5 additions & 0 deletions boards/parts/rpi/src/wifi.cpp
@@ -0,0 +1,5 @@
#include <process.hpp>

namespace otto {

}
3 changes: 3 additions & 0 deletions external/CMakeLists.txt
Expand Up @@ -61,4 +61,7 @@ execute_process(COMMAND git submodule update --init -- range-v3 WORKING_DIRECTOR
add_library(range-v3 INTERFACE)
target_include_directories(range-v3 SYSTEM INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/range-v3/include)

# Tiny Process library
execute_process(COMMAND git submodule update --init -- tiny-process-library WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/tiny-process-library)

1 change: 1 addition & 0 deletions external/tiny-process-library
Submodule tiny-process-library added at 5bc475
1 change: 1 addition & 0 deletions src/CMakeLists.txt
Expand Up @@ -30,6 +30,7 @@ target_link_libraries(otto PUBLIC GSL)
target_link_libraries(otto PUBLIC fmt)
target_link_libraries(otto PUBLIC imgui)
target_link_libraries(otto PUBLIC range-v3)
target_link_libraries(otto PUBLIC tiny-process-library)

# Enable warnings for local code
if(MSVC)
Expand Down

0 comments on commit 4961d5f

Please sign in to comment.