Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Makefile
CMakeCache.txt
cmake_install.cmake
CMakeFiles
libmultichoose.a
multichoose
multipermute
cmultichoose
tad
.*swp
*.pyc
22 changes: 22 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
cmake_minimum_required(VERSION 2.8)

add_library(multichoose
multichoose.cpp
multipermute.cpp
)

add_executable(multichoose-bin
multichoose.cpp
)

set_target_properties(multichoose-bin
PROPERTIES OUTPUT_NAME multichoose
)

add_executable(multipermute
multipermute.cpp
)

add_executable(cmultichoose
multichoose.c
)
17 changes: 0 additions & 17 deletions Makefile

This file was deleted.

1 change: 1 addition & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ This is a small C++ library/program which contains a generic function to
generate multisets for vectors of any type of object. You can test out the
program using strings input from the command line by typing:

% cmake .
% make

Running:
Expand Down