Add CMake build to Travis

This commit is contained in:
Serge Lamikhov-Center 2020-08-19 22:09:30 -07:00
parent a142d45a6c
commit deec66cb4e
2 changed files with 7 additions and 1 deletions

View File

@ -25,7 +25,14 @@ script:
- autoreconf -f -i
- ./configure CXXFLAGS=--std=c++11
- make
- cd tests
- autoreconf -f -i
- ./configure CXXFLAGS=--std=c++11
- make check
- cd ..
- mkdir build
- cd build
- cmake ..
- cmake --build .

View File

@ -2,7 +2,6 @@
add_subdirectory(anonymizer)
add_subdirectory(elfdump)
#add_subdirectory(RelocationTable)
add_subdirectory(tutorial)
add_subdirectory(write_obj)
add_subdirectory(writer)