diff options
author | Kovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com> | 2009-08-30 08:50:47 +0000 |
---|---|---|
committer | Kovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com> | 2009-08-30 08:50:47 +0000 |
commit | 185a7a8ee85027b94143f15769478ef0216712ad (patch) | |
tree | dac7430292addd1bae8fe2e9e6b709b96ef05af7 | |
parent | 13df2a878bed028c9745e7be7e4e20796ee44e84 (diff) | |
download | wireshark-185a7a8ee85027b94143f15769478ef0216712ad.tar.gz wireshark-185a7a8ee85027b94143f15769478ef0216712ad.tar.bz2 wireshark-185a7a8ee85027b94143f15769478ef0216712ad.zip |
Find Win32 bundled packages
svn path=/trunk/; revision=29623
-rw-r--r-- | CMakeLists.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 58d945bd0c..e555495897 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,7 +21,6 @@ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # - project(wireshark C) cmake_minimum_required(VERSION 2.6) @@ -89,7 +88,11 @@ else() endif() #The minimum package list -set(PACKAGELIST GLIB2 PCAP LEX YACC Perl ${PACKAGELIST}) +if(WIN32) + set(PACKAGELIST WSWIN32 LEX YACC Perl ${PACKAGELIST}) +else() + set(PACKAGELIST GLIB2 PCAP LEX YACC Perl ${PACKAGELIST}) +endif() #build the gui ? if(BUILD_wireshark) |