-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moves from autotools to CMake. modified: .travis.yml new file: CMakeLists.txt renamed: COPYING -> LICENSE deleted: Makefile.am deleted: Makefile.in deleted: aclocal.m4 deleted: autogen.sh deleted: compile modified: config.h.in deleted: configure deleted: configure.ac deleted: depcomp renamed: src/dicts.c -> dicts.c renamed: src/dicts.h -> dicts.h deleted: install-sh renamed: src/mbdextract.c -> mbdextract.c deleted: missing deleted: src/Makefile.am deleted: src/Makefile.in
- Loading branch information
Showing
20 changed files
with
22 additions
and
10,271 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,5 @@ compiler: | |
- gcc | ||
- clang | ||
before_install: | ||
- ./autogen.sh | ||
script: ./configure && make | ||
- cmake . | ||
script: make |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
cmake_minimum_required(VERSION 2.6) | ||
|
||
project (MBDextract) | ||
|
||
set (MBDextract_VERSION 0.2) | ||
set (MBDextract_BUGREPORT "mys721tx\@gmail.com") | ||
|
||
configure_file ( | ||
"${PROJECT_SOURCE_DIR}/config.h.in" | ||
"${PROJECT_BINARY_DIR}/config.h" | ||
) | ||
|
||
add_executable (mbdextract mbdextract.c dicts.h dicts.c) | ||
|
||
install(TARGETS mbdextract DESTINATION bin) |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.