mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-29 10:17:39 +02:00
Moved build output to bin/ and lib/
This commit is contained in:
14
.gitignore
vendored
14
.gitignore
vendored
@ -1,15 +1,5 @@
|
||||
*.sdf
|
||||
*.user
|
||||
*.suo
|
||||
*.opensdf
|
||||
*.vcxproj
|
||||
*.vcxproj.filters
|
||||
*.sln
|
||||
*.cmake
|
||||
*.stamp
|
||||
*.stamp.depend
|
||||
.DS_Store
|
||||
Debug
|
||||
ipch
|
||||
/.idea
|
||||
/build
|
||||
/bin
|
||||
/lib
|
||||
|
@ -3,5 +3,9 @@ project(ArduinoJson)
|
||||
|
||||
enable_testing()
|
||||
|
||||
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/lib)
|
||||
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/lib)
|
||||
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/bin)
|
||||
|
||||
add_subdirectory(src)
|
||||
add_subdirectory(test)
|
Reference in New Issue
Block a user