Give lwIP a top-level CMakeLists.txt

(as it is common in other projects)
This breaks iteropts.sh for now
This commit is contained in:
Dirk Ziegelmeier
2018-10-08 20:57:06 +02:00
parent abcf42b655
commit 2124becd04
5 changed files with 20 additions and 31 deletions

12
.vscode/tasks.json vendored
View File

@@ -13,10 +13,10 @@
"isDefault": true
},
"linux": {
"command": "cd ${workspaceFolder}/contrib/ports/unix/example_app/build && cmake --build ."
"command": "cd ${workspaceFolder}/build && cmake --build ."
},
"windows": {
"command": "cd ${workspaceFolder}/contrib/ports/win32/example_app/build; cmake --build ."
"command": "cd ${workspaceFolder}/build; cmake --build ."
}
},
{
@@ -25,10 +25,10 @@
"problemMatcher": "$gcc",
"group": "build",
"linux": {
"command": "cd ${workspaceFolder}/contrib/ports/unix/example_app && mkdir build && cd build && cmake .."
"command": "cd ${workspaceFolder} && mkdir build && cd build && cmake .."
},
"windows": {
"command": "cd ${workspaceFolder}/contrib/ports/win32/example_app; mkdir build; cd build; cmake .."
"command": "cd ${workspaceFolder}; mkdir build; cd build; cmake .."
}
},
{
@@ -37,10 +37,10 @@
"problemMatcher": [],
"group": "none",
"linux": {
"command": "cd ${workspaceFolder}/contrib/ports/unix/example_app/build && cmake --build . --target lwipdocs"
"command": "cd ${workspaceFolder}/build && cmake --build . --target lwipdocs"
},
"windows": {
"command": "cd ${workspaceFolder}/contrib/ports/win32/example_app/build; cmake --build . --target lwipdocs"
"command": "cd ${workspaceFolder}/build; cmake --build . --target lwipdocs"
},
}
]